-
Notifications
You must be signed in to change notification settings - Fork 60
request_response
hetiansu5 edited this page Jul 8, 2019
·
1 revision
建议非GET类的请求,每一个接口都需要定义Request和Response的数据结构实体,使用Content-Type:applicatoin/json方式提交请求。
app/http/entities
通过路由层定义处理的controller回调函数,函数的输入参数会注入*gin.Context的变量,通过此变量可以获取请求参数、URL、Host、Method、Body、Ip等,具体参数的话可以查看Gin框架的文档。
在服务端通过调用如下方法,可以将json字符串的请求数据转换为数据结构实体。
request := new(entities.UserCreateRequest)
err := genRequest(c, request)
成功返回
{
"code": 200,
"message": "ok",
"request_uri": "/user/create",
"data": response, //response根据业务再具体定义
}
失败返回
{
"code": 404,
"message": "params error",
"request_uri": "/user/create",
"data": {},
}
在目录 app/http/entities 定义响应结果的业务相关性的数据结构实体