// @title Swagger Example API
// @version 1.0
// @description This is a sample server Petstore server.
// @termsOfService http://swagger.io/terms/

// @contact.name API Support
// @contact.url http://www.swagger.io/support
// @contact.email support@swagger.io

// @license.name Apache 2.0
// @license.url http://www.apache.org/licenses/LICENSE-2.0.html

// @host 127.0.0.1:8080

1.host是execute测试调用的后端API的 地址端口,不要写错了

2.测试页面 ​​http://127.0.0.1:8080/swagger/index.html​​ ,不要写成localhost

3.每次修改之后执行 swag init生效

通过添加注释,来添加API

// @删除用户
// @Description 删除用户
// @Accept json
// @Produce json
// @Param Id query int false "int valid"
// @Param Name query string false "string valid"
// @Param Age query int false "int valid"
// @Param Img query int false "int valid"
// @Router /user/del [post]
func DeleteUser(c *gin.Context) {
id, _ := strconv.Atoi(c.Request.FormValue("Id"))
name := c.Request.FormValue("Name")
age, _ := strconv.Atoi(c.Request.FormValue("Age"))
service.InsertUser(id, name, age)
}