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
ithelloworld
V2EX  ›  Python

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

  •  
  •   ithelloworld · 2016-01-29 14:41:41 +08:00 · 2386 次点击
    这是一个创建于 3010 天前的主题,其中的信息可能已经有所发展或是发生改变。

    比如这种情况:

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

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

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

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

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

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

    另外,虽然 include 的是 html 文件,但里面也是嵌有 mako 语法的。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5381 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 32ms · UTC 07:12 · PVG 15:12 · LAX 00:12 · JFK 03:12
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.