V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
NeIO
V2EX  ›  Python

django 的模板重用问题

  •  
  •   NeIO · 2014-04-02 15:15:31 +08:00 · 2444 次点击
    这是一个创建于 3648 天前的主题,其中的信息可能已经有所发展或是发生改变。
    最近接触了django, 用来做博客. 博客的每一篇文章用一个div容器包围,大致结构如下:
    <div>
    <!-- SOMETHING -->
    {% block content %}
    <!-- SOMETHING -->
    </div>
    现在问题是, 我想在一个页面上显示多篇文章, 而一个html文件却只能继承一次block content 的内容,也就是说, 只能显示一篇文章. .怎么解决呢 T T ,谢谢大家.
    ----------------------------
    2 条回复    1970-01-01 08:00:00 +08:00
    gaicitadie
        1
    gaicitadie  
       2014-04-02 15:20:36 +08:00
    {% block content %}
    {% with 'myvar' as expectedVarName %}
    {{block.super}}
    {% endwith %}
    {% endblock content %}

    转自: http://stackoverflow.com/questions/1893579/django-passing-argument-to-parent-template
    xiaket
        2
    xiaket  
       2014-04-02 15:32:57 +08:00
    content作为一个列表传递进来, 模板里一个for来轮流取轮流渲染.
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1008 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 578ms · UTC 19:46 · PVG 03:46 · LAX 12:46 · JFK 15:46
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.