阿里云函数计算GBK编码
阿里云函数计算GBK编码
前端树莓派,需要后端处理编码问题;
参考文档阿里文档:“https://help.aliyun.com/zh/functioncompute/fc-2-0/user-guide/configure-an-api-gateway-trigger?spm=a2c4g.11186623.help-menu-2508973.d_2_8_19_1.de5c36d4D0LuA6”
修改属性,在线函数调试成功
# 正常代码
CJsonEncoder 是处理时间的,可以移除该属性
def SUCESEE(self, data):if data is None:data = {}rep = {'isBase64Encoded': 'false','statusCode': '200','headers': {'x-custom-header': 'no', 'Content-Type': 'application/json;charset=UTF-8'},'body': {'code': 10000, 'msg': 'Success', 'data': data}}return json.dumps(rep, cls=CJsonEncoder)
GBK编码代码
# 返回GBK编码-中控屏使用(不推送,仅存档)def GBK_DATA(self, data):rep = {'isBase64Encoded': 'false','statusCode': '200','headers': {'x-custom-header': 'no', 'Content-Type': 'text/html; charset=GBK'}, # GBK-代码'body': {'code': 10000, 'msg': 'Success', 'data': data}}rep['body'] = json.dumps(rep['body'], cls=CJsonEncoder, ensure_ascii=True).encode('GBK').decode('latin1') # GBK-代码return json.dumps(rep, cls=CJsonEncoder)
效果