处理 app_mobile_api ,可在 16上应用,可以脱离小程序 h5共用

This commit is contained in:
ivan deng
2023-05-15 19:35:43 +08:00
parent 3dbfd1b527
commit 0c21105c7a

View File

@@ -26,7 +26,7 @@ class AppController(http.Controller):
# 返回这个图片的base64编码
return base64.b64encode(BytesIO(response.content).read())
@http.route('/web/ua/show', auth='public', methods=['GET'])
@http.route(['/web/ua', '/web/ua/show'], auth='public', methods=['GET'])
def app_ua_show(self):
# https://github.com/selwin/python-user-agents
ua_string = request.httprequest.headers.get('User-Agent')
@@ -67,7 +67,7 @@ class AppController(http.Controller):
utype = 'wxapp'
elif 'MicroMessenger' in ua:
# 微信浏览器
utype = 'wxweb'
utype = 'wx'
elif 'cn.erpapp.o20sticks.App' in ua:
# 安卓app
utype = 'native_android'