用过的baidu空间,太难用了,还是cnblogs好用
GZ.Jackey
学无止境,博采众长。
 
golang httpserver如果采用 fmt.Fprintf(w, result)来输出json数据时,若json数据包含%号,则会出现问题。
 
输出结果里面会包含(MISSING)字样,造成json格式错误。

把输出函数替换为w.Write即可。


func Action(w http.ResponseWriter, r *http.Request) { var result string //....................... // fmt.Fprintf(w, result) w.Write([]byte(result)) }

 

posted on 2015-03-02 10:22  GZ.Jackey  阅读(2027)  评论(0编辑  收藏  举报