标签:导入 user 多个 图文 idt alt mamicode 一个 蓝图
目录:
blueprint.py
book.py
user.py
app目录下的__init__.py
fisher.py
第二种写法:
把Blueprint.py中代码,写到web目录 __init__.py文件中,然后 导入book 和 user 的py文件
from flask import Blueprint
web=Blueprint("web",__name__)
from app.web import book
from app.web import user
在把 app目录下的__init__.py register_blueprint函数 导入 web下 __init__.py中的web蓝图排插
def register_blueprint(app):
from app.web import web
app.register_blueprint(web)
标签:导入 user 多个 图文 idt alt mamicode 一个 蓝图
原文地址:https://www.cnblogs.com/kaibindirver/p/12635687.html