V2EX = way to explore
V2EX 是一个关于分享和探索的地方
Sign Up Now
For Existing Member  Sign In
推荐学习书目
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
ithelloworld
V2EX  ›  Python

mako 模版如何在 include 中使用 $ ?

  •  
  •   ithelloworld · Jan 29, 2016 · 3184 views
    This topic created in 3747 days ago, the information mentioned may be changed or developed.

    比如这种情况:

    <%include file="another.html" args="label=${detail}"%>
    

    我想动态给 label 赋值,但好像不能使用 $ ,从官方文档没找到 args 相关信息。

    我需要这样用,如何办到呢?如果不能写在一行,多行有办法实现吗?

    2 replies    2016-01-29 17:14:01 +08:00
    royzhanggy
        1
    royzhanggy  
       Jan 29, 2016
    args 里面不用$,直接 label=detail ,至于 detail 应该是在一个处理函数里 return 出来的,不知道你是不是用的 blueprint ,如果是的话一个 url 对应一个处理函数 view , detail 就是这个 view 函数里定义的了,最后 return 出来就行,推荐你看下 blueprint 怎么使用的。而且你这里怎么会有 html 的,既然用了 mako 当然所有页面都用 mako 写了
    ithelloworld
        2
    ithelloworld  
    OP
       Jan 29, 2016
    @royzhanggy 谢谢回答。其实这里我想这样实现:

    <%include file="another.html" args="label=${_('detail')}"%>

    ${_('detail')} 是要做成 i18n 的。就这个要显示的信息不知怎么加到这种情况了。没用 blueprint 。

    另外,虽然 include 的是 html 文件,但里面也是嵌有 mako 语法的。
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   802 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 42ms · UTC 19:52 · PVG 03:52 · LAX 12:52 · JFK 15:52
    ♥ Do have faith in what you're doing.