upload_config.json 返回值为空
来源:10-4 ueditor 后台上传配置。
慕虎7527636
2020-03-12
def ueditor():
req = request.values
action = req['action'] if 'action' in req else ''
if action == "config":
root_path = app.root_path
config_path = "{0}/web/static/plugins/ueditor/upload_config.json".format(root_path)
with open(config_path) as fp:
try:
config_data = json.loads(re.sub(r'\/\*.* \*/', "", fp.read()))
except:
config_data = {}
return jsonify(config_data)
return "upload"
写回答
2回答
-
慕虎7527636
提问者
2020-03-12
open 里面添加 encoding 就可以正常了
open(config_path,encoding="utf-8" )
10 -
编程浪子
2020-03-12
你好
好的,是的。这个当时录课程把 windows环境 没考虑完全。课程提供的源码已经修改了
012020-03-12
相似问题