插入数据的时候报错
来源:3-8 .管理员-登录日志-操作日志数据模型设计

欲影
2017-09-08
sqlalchemy.exc.InvalidRequestError: Multiple classes found for path "Movie" in the registry of this declarative base. Please use a fully module-qualified path.
写回答
3回答
-
同学,你好,你在什么位置插入数据的时候出错,给老师一个截图。
052017-09-14 -
rustgopy
2017-09-14
注释掉蓝图部分,待导入成功再消除注释。
"""
from app.home import home as home_blueprint
from app.admin import admin as admin_blueprint
app.register_blueprint(home_blueprint)
app.register_blueprint(admin_blueprint, url_prefix="/admin")
@app.errorhandler(404)
def page_not_found(error):
return render_template("home/404.html"), 404
"""00 -
欲影
提问者
2017-09-11
插入数据
00
相似问题