前后端不分离模式(jinja2 jquery)
路由文件
@bp.route(’/index’)
@login_required
def index():
return render_template(‘index.html’)
jinja2的路由跳转方式是href="{{ url_for(‘main.index’) }}"
jquery的方式是location.href ="/admin/index"
那么这种情况下如果写成location.href ="main.index"肯定是不对的
jquery的方式是location.href =“index”
直接指向路由文件中bp.route中定义的名字