错误信息展示:
ERROR:tornado.application:Uncaught exception GET /groups/ (127.0.0.1)
……
File "H:\project\sgjlb_tornado\apps\group\handler.py", line 130, in get
group_dict = model_to_dict(group)
……
rel_obj = getattr(model, field.name)
……
"Error, sync query is not allowed! Call the `.set_allow_sync()` "
AssertionError: Error, sync query is not allowed! Call the `.set_allow_sync()` or use the `.allow_sync()` context manager.
ERROR:tornado.access:500 GET /groups/ (127.0.0.1) 81.00ms
错误定位:在调用peewee提供的model_to_dict时出错。model_to_dict是一个同步的方法,协程在调用它的时候出错了。
查看model时,发现model里有外键,model_to_dict在执行时 无法自动去关联外键。在model中自定义方法,提前实现外键对应的表的关联。注意model中有几个外键便要关联几个。否则还会报错。
# 将外键的数据取出来
@classmethod
def extend(cls):
# 查peewee官方文档 有join的操作写法
# 注意不要把密码拿出来 否则会报错
return cls.select(
cls, User_info.user_id, User_info.wx_nick).join(User_info)