我有一点点问题,Flask似乎认为这些蓝图类中没有属性bp
,并且它添加了蓝图路线,但仍记录错误,它& #39;把我推到墙上。
app.py导入代码
for dirpath, dirnames, filenames in os.walk('blueprint'):
for filename in filenames:
if filename.endswith(".py"):
fullpath = os.path.join(dirpath, filename).split(os.sep)
module = ".".join(fullpath)[:-3]
try:
module = importlib.import_module(module)
prefix = module.__name__.split('.')[-1:][0]
if prefix.startswith('_'):
app.register_blueprint(module.bp)
else:
app.register_blueprint(
module.bp, url_prefix=f'/{prefix}')
except Exception as error:
print(f"{type(error)} Unable to load {module}: {error}")
示例蓝图(即index.py)
bp = Blueprint('', __name__)
@bp.route('/')
def index(*args, **kw):
return render_template('index.html')
输出
<class 'AttributeError'> Unable to load <module 'blueprint._index' from '~~~/blueprint/_index.py'>: module 'blueprint._index' has no attribute 'bp'
正如您所看到的那样bp
变量,并添加了路线,但没有try/except
路线也没有被添加..它相当令人烦恼,而且我还有。 d而不只是pass
他们..
修改
目录树
- app.py
- blueprints/
- index.py
- etc.py