Commit a3363b06 authored by astaxie's avatar astaxie

json change from Indent to none

parent 51e625de
...@@ -216,7 +216,7 @@ func (c *Controller) Abort(code string) { ...@@ -216,7 +216,7 @@ func (c *Controller) Abort(code string) {
} }
func (c *Controller) ServeJson(encoding ...bool) { func (c *Controller) ServeJson(encoding ...bool) {
content, err := json.MarshalIndent(c.Data["json"], "", " ") content, err := json.Marshal(c.Data["json"])
if err != nil { if err != nil {
http.Error(c.Ctx.ResponseWriter, err.Error(), http.StatusInternalServerError) http.Error(c.Ctx.ResponseWriter, err.Error(), http.StatusInternalServerError)
return return
...@@ -229,7 +229,7 @@ func (c *Controller) ServeJson(encoding ...bool) { ...@@ -229,7 +229,7 @@ func (c *Controller) ServeJson(encoding ...bool) {
} }
func (c *Controller) ServeJsonp() { func (c *Controller) ServeJsonp() {
content, err := json.MarshalIndent(c.Data["jsonp"], "", " ") content, err := json.Marshal(c.Data["jsonp"])
if err != nil { if err != nil {
http.Error(c.Ctx.ResponseWriter, err.Error(), http.StatusInternalServerError) http.Error(c.Ctx.ResponseWriter, err.Error(), http.StatusInternalServerError)
return return
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment