我无法弄清楚如何将模板与其他值一起返回。
我的视图功能如下:
@app.route('/', methods=['GET', 'POST'])
def index():
page = request.args.get('page')
return render_template('index.html', page=page)
这很好用,我遇到的问题是我还需要在模板外面返回页面的值以用于其他目的,但我无法:
这是我尝试过的一个例子:
return render_template('index.html', page=page) and page
这不起作用,任何帮助将不胜感激