我需要在我的Flask后端系统中使用Backbone模板。我已经有Flask模板,路由,HTTP登录等方法。
如何使用骨干模板系统与现有的烧瓶视图而不是Jinja2?
这里有一些例子
@app.route('/') #I have login page here!
def index():
return render_template('index.html')
@app.route('/login', methods=['POST', 'GET']) #When i clickin SUBMIT - I redirecting here and do stuff
def login():
if request.method == 'POST':
#code </code>