render_template with multiple variables

前端 未结 3 606
再見小時候
再見小時候 2020-12-13 09:23

I am using Flask(as framework) and MongoDB(as database server). Right now, all i can do is just pass one argument that i got from the database:

@app.route(\'         


        
3条回答
  •  忘掉有多难
    2020-12-13 09:45

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

    You can pass as many variables as you need. The api

    excerpt:

    flask.render_template(template_name_or_list, **context) Renders a template from the template folder with the given context.

    Parameters: template_name_or_list – the name of the template to be rendered, or an iterable with template names the first one existing will be rendered context – the variables that should be available in the context of the template.

提交回复
热议问题