Skip to main content

JSON数据返回

GoFrame中可以通过以下方法返回JSON数据:

func (r *Response) WriteJson(content interface{})
func (r *Response) WriteJsonExit(content interface{})

通过以上方法,会直接将参数内容进行JSON转换之后返回到客户端,并且将响应头中Content-Type设置为 application/json