1.uri 参数获取
ctx.Param(“id”)
2.get参数获取
https://blog.csdn.net/weixin_44014995/article/details/108340915
3.请求参数如何过滤
@RequestBody
如果缺失
err := ctx.BindJSON(m)
if err != nil {
response.FailWithMessageCode(common.SERVICE_ERROR, "请求体缺失", ctx)
return
}
1.uri 参数获取
ctx.Param(“id”)
2.get参数获取
https://blog.csdn.net/weixin_44014995/article/details/108340915
3.请求参数如何过滤
@RequestBody
如果缺失
err := ctx.BindJSON(m)
if err != nil {
response.FailWithMessageCode(common.SERVICE_ERROR, "请求体缺失", ctx)
return
}
让时间为你证明