首页 > 其他 > 详细

02-iris get请求

时间:2020-09-02 22:31:42      阅读:68      评论:0      收藏:0      [点我收藏+]

main.go

package main
import (
     "github.com/kataras/iris/v12"   
     "github.com/kataras/iris/v12/context"   
)

func main() {
    app := iris.New()
  //字符串形式

    app.Get("/getstring", func(context context.Context){
      context.WriteString("Hello Test")
     app.Logger().Info("getstring 测试")

    })  
  //html格式

  app.Get("/gethtml", func(context context.Context){
    context.Html("<h1>Hello Test</h1>")
    app.Logger().Info("gethtml 测试")
  })
  //带参数

  app.Get("/userinfo", func(context context.Context){
    userName := context.URLParam("username")
    app.Logger().Info("用户名:" + userName)
    pwd := context.URLParam("pwd")
    app.Logger().Info("密码:" + pwd)

    context.Html("<h1>" + "用户名:" + userName + "</h1>")
    context.Html("<h1>" + "密码:" + pwd + "</h1>")
  })

}

 

 

测试:

127.0.0.1:8080/getstring

127.0.0.1:8080/gethtml

127.0.0.1:8080/userinfo?username=lisi&pwd=123abc

 

02-iris get请求

原文:https://www.cnblogs.com/udont/p/13603724.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!