render_template包含多个变量

时间:2012-08-23 16:49:11

标签: python mongodb flask

我正在使用Flask(作为框架)和MongoDB(作为数据库服务器)。现在,我所能做的只是传递一个我从数据库得到的参数:

@app.route('/im/', methods=['GET', 'POST'])
def im_research(user=None):
    error = None
    if request.method == 'POST':
        if request.form['user']:
            user = mongo.db.Users.find_one_or_404({'ticker':request.form['user']})
            return redirect(url_for('im_user',user= user) )
        else:
            flash('Enter a different user')
            return redirect(url_for('im'))
    if request.method == 'GET':
       return render_template('im.html', user= None)

如何从数据库传递多个变量: 例如:在我的Mongo数据库中:我在我的数据库中有这些东西,我想将它们全部传递给我的模板。

{
users:'xxx'
content:'xxx'
timestamp:'xxx'
}

使用Flask可以做到吗?

3 个答案:

答案 0 :(得分:47)

您可以将多个参数传递给视图。

您可以传递所有本地变量

@app.route('/')
def index():
  content = """
     teste
   """
  user = "Hero"
  return render_template('index.html', **locals())

或只是传递您的数据

def index() :
    return render_template('index.html', obj = "object", data = "a223jsd" );

api doc

答案 1 :(得分:13)

return render_template('im.html', user= None, content = xxx, timestamp = xxx)

您可以根据需要传递尽可能多的变量。 api

摘录:

  

flask.render_template(template_name_or_list,** context)   呈现一个   具有给定上下文的模板文件夹中的模板。

     

参数:template_name_or_list - 要使用的模板的名称   渲染,或具有模板名称的迭代,第一个存在   将呈现上下文 - 应该可用的变量   模板的上下文。

答案 2 :(得分:0)

也可以将列表传递给render_template的上下文变量,并使用HTML中Jinja的语法引用其元素。

example.py

l = [user, content, timestamp]
return render_template('exemple.html', l=l)

exemple.html

...
<body>
    {% for e in l %}
        {{e}}
    {% endfor %}
</body>
...