func getPostData(ctx *gin.Context){
name := ctx.PostForm("name")
password := ctx.PostForm("password")
fmt.Println(name)
fmt.Println(password)
ctx.JSON(http.StatusOK,gin.H{
"code":200,
"msg":"成功",
})
}
post请求
最新推荐文章于 2022-09-30 09:17:00 发布