青训营第二次课
第二次课
项目里会报错gin,先安装gin框架,之后根据代码波浪线提示导入代码,删除import里多余的代码。
命令行
curl 127.0.0.1:8080/community/page/get/1
应该是我给项目文件夹配置了GOPATH,GoLand编译器里也可以用curl了
浏览器输入
http://127.0.0.1:8080/community/page/get/1
报错未解析的引用,但是可以运行。
Postman
Params对应c.Query
Body下,form-data对应GetPostForm
func Register(c *gin.Context) {
username := c.Query("username")
password := c.Query("password")
topicId, _ := c.GetPostForm("topic_id")
content, _ := c.GetPostForm("content")
}