|
@@ -162,6 +162,8 @@ func (c *BaseAuthController) JSON(data interface{}, hasIndent bool, coding bool)
|
|
// 数据加密
|
|
// 数据加密
|
|
if services.CheckEncryption() {
|
|
if services.CheckEncryption() {
|
|
content = utils.DesBase64Encrypt(content)
|
|
content = utils.DesBase64Encrypt(content)
|
|
|
|
+ // get请求时,不加双引号就获取不到数据,不知道什么原因,所以还是在前后加上双引号吧
|
|
|
|
+ content = []byte(`"` + string(content) + `"`)
|
|
}
|
|
}
|
|
return c.Ctx.Output.Body(content)
|
|
return c.Ctx.Output.Body(content)
|
|
}
|
|
}
|