青训营第二次课

第二次课

项目里会报错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

报错未解析的引用,但是可以运行。

报错未解析的引用但是可以运行.png

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")
}
posted @ 2022-05-16 13:09  剩下的交给时间就好  阅读(24)  评论(0编辑  收藏  举报