gin/render/json.go

32 lines
564 B
Go
Raw Normal View History

package render
import (
"encoding/json"
"net/http"
)
type (
2015-05-18 13:45:24 +00:00
JSON struct {
Data interface{}
}
2015-05-18 13:45:24 +00:00
IndentedJSON struct {
Data interface{}
}
)
2015-05-18 13:45:24 +00:00
func (r JSON) Write(w http.ResponseWriter) error {
w.Header().Set("Content-Type", "application/json; charset=utf-8")
return json.NewEncoder(w).Encode(r.Data)
2015-05-10 23:02:17 +00:00
}
2015-05-18 13:45:24 +00:00
func (r IndentedJSON) Write(w http.ResponseWriter) error {
w.Header().Set("Content-Type", "application/json; charset=utf-8")
jsonBytes, err := json.MarshalIndent(r.Data, "", " ")
if err != nil {
return err
}
2015-05-18 13:45:24 +00:00
w.Write(jsonBytes)
return nil
}