继初步了解iris后
获取url路径
package main
import "github.com/kataras/iris/v12"
func main(){
app := iris.New()
app.Get("/hello",func(ctx iris.Context){
path := context.Path()
app.Logger().Info(path)
context.WriteString("请求路径",path)
})
app.Listen(":82")
}
获取数据
get请求
app.Get("/userinfo",func(ctx iris.Context){
//path := ctx.Path()
userName := ctx.URLParam("username")
pwd := ctx.URLParam("pwd")
if(userName=="admin"&&pwd=="123456"){
ctx.HTML("<h1>"+userName+" welcome" + "</h1>")
}else{
ctx.HTML("<h1>"+"plase register again"+"</h1>")
}
})
post请求
app.Post("/postLogin",func(ctx iris.Context){
name := ctx.PostValue("name")
pwd := ctx.PostValue("pwd")
app.Logger().Info(name," ",pwd)
ctx.HTML(name)
})