gin/render/json.go

34 lines
587 B
Go
Raw Normal View History

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