recherche

Maison  >  Questions et réponses  >  le corps du texte

python - flask问题

问题

home.html

{% extends "base/base.html" %}
{% block title %}Home{% endblock %}
{% block content %}
    {% include "./recent_post.html" %}
{% endblock %}

recent_post.html

{{ posts_list }}

现在xxx.py

return render_template('home.html',posts_list=get_posts_list)

怎么让recent_post.html里的posts_list获取到传过去的值呢

标签问题

巴扎黑巴扎黑2785 Il y a quelques jours521

répondre à tous(2)je répondrai

  • ringa_lee

    ringa_lee2017-04-18 10:27:01

    <ul>
    
    {% for i in posts_list %}
    <li>{{i}}</li>
    {% endfor %}
    </ul>

    répondre
    0
  • 高洛峰

    高洛峰2017-04-18 10:27:01

    Problème de balise causé par l'échappement automatique

    répondre
    0
  • Annulerrépondre