go json response Controller 例子
🕕 Thu, 25 Feb 2016 by GolangNote
go json response Controller 例子
// controller/json_response.go
package controller
import (
"encoding/json"
"net/http"
)
// status codes
const (
StatusOK = http.StatusOK
StatusCreated = http.StatusCreated
)
// JSONResponse is alias of map for JSON response
type JSONResponse struct {
data map[string]interface{}
status int
}
// NewResponse creates a new JSONResponse
func NewResponse() *JSONResponse {
r := &JSONResponse{
data: make(map[string]interface{}),
status: StatusOK,
}
return r
}
// Merge adds multiple map data to the response
func (r *JSONResponse) Merge(data map[string]interface{}) {
for k, v := range data {
r.data[k] = v
}
}
// Add adds a single key-value to the response
func (r *JSONResponse) Add(key string, value interface{}) {
r.data[key] = value
}
// SetCreated set http status code to 201
func (r *JSONResponse) SetCreated() {
r.status = StatusCreated
}
// RenderJSON render json response
func RenderJSON(w http.ResponseWriter, msg interface{}) {
switch v := msg.(type) {
case *JSONResponse:
if _, ok := v.data["error"]; !ok {
v.data["error"] = nil
}
w.WriteHeader(v.status)
msg = v.data
}
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(msg)
}
使用
// controller/apiv1/author_controller.go
package apiv1
import (
"net/http"
"github.com/zenazn/goji/web"
"github.com/eure/example-blog-golang/controller"
)
// GetAuthor shows author data
func GetAuthor(c web.C, w http.ResponseWriter, r *http.Request) {
data := controller.NewResponse()
data.Add("object", "author")
data.Add("name", c.URLParams["name"])
controller.RenderJSON(w, data)
}
路由
// routing/v1.go
package routing
import (
"github.com/zenazn/goji/web"
"github.com/eure/example-blog-golang/controller/apiv1"
)
// SetV1 sets api routing ver1
func SetV1(r *web.Mux) {
r.Get("/author/:name", apiv1.GetAuthor)
}
测试
$ curl -s localhost:1234/api/v1/author/takuma
{"error":null,"name":"takuma","object":"author"}
$ curl -s localhost:1234/api/v1/author/your_sweetheart
{"error":null,"name":"your_sweetheart","object":"author"}
本文网址: https://golangnote.com/topic/115.html (转载注明出处)
关于GolangNote:记录在工作中使用golang 遇到、面临的相关问题及解决方法。如果你在这里获得一些知识或信息,解决你的编程问题,请考虑捐赠给不幸的人或者你喜欢的慈善机构,除捐赠外,种植树木、志愿服务或减少排碳的行为也很有益处。如果你有任何问题可以在下面 留言
Be the first to comment!
Relative Articles
Recent Go Articles
- Golang 把cookie 字符串解析为cookie 结构
- Golang 计算字符串中包含某个或某些字符集的个数
- 使用Golang 对文件增删写读操作备忘
- Go Modules 使用备忘
- 使用Golang 简单删除图片exif 信息
- 谷歌翻译的 golang 库推荐
- Go 1.13.2 与1.13.3 紧急更新
- golang 人脸检测识别库
- Go build 错误 “stackcheck redeclared in this block previous declaration”的解决方法
- Golang phantomjs 动态代理实现
- Golang chrome debug protocol 库推荐
- Golang 随机打乱数组/Slice
- Golang sync.WaitGroup 的 Wait 超时处理
- Golang实现简单的Socks5代理
- Golang 用snappy + Base64 简单压缩加密进行网络传输
- Golang http IPv4/IPv6 服务
- golang 全角半角相互转换
- 在自己的网站部署TLS 1.3
- Golang 实现/打印菜单树
- Golang telegram 机器人小试
Top Go Articles
- 使用Golang 简单删除图片exif 信息
- 谷歌翻译的 golang 库推荐
- Go 1.13.2 与1.13.3 紧急更新
- golang 人脸检测识别库
- Go build 错误 “stackcheck redeclared in this block previous declaration”的解决方法
- Golang phantomjs 动态代理实现
- Golang chrome debug protocol 库推荐
- Golang 随机打乱数组/Slice
- Golang sync.WaitGroup 的 Wait 超时处理
- Golang实现简单的Socks5代理
- Golang 用snappy + Base64 简单压缩加密进行网络传输
- Golang http IPv4/IPv6 服务
- golang 全角半角相互转换
- 在自己的网站部署TLS 1.3
- Golang 实现/打印菜单树
- Golang telegram 机器人小试
- Golang get 请求忽略数字证书进行校验
- Golang字符串相等比较的性能
- an error broken: unknown escape sequence: d
- golang 正确获取绝对路径的方法