嗨,我的视图文件中有一个函数,我需要在我的头文件中使用它,这对所有模板都是通用的,
@app.route('/admin/')
def adminhome():
row1 =''
try:
db = connect_db()
rows=g.db.query("SELECT * FROM `auth_user` order by id DESC ")
rows1 = list(rows)
data=''
if len(rows1) > 0:
users = rows1
#close_db(db)
except Exception as e:
users = e
return render_template('admin/index.html',users=users)
但这个功能只适用于
@app.route('/admin/')
我如何为所有网址注册此功能