如何处理嵌套上下文?

时间:2012-01-18 10:53:25

标签: javascript python mustache

我想在Mustache中使用嵌套字典,Mustache manual中的非虚假值部分表示可能并提供以下示例:

模板:

{{#person?}}
  Hi {{name}}!
{{/person?}}

哈希:

{
   "person?": { "name": "Jon" }
}

输出:

Hi Jon!

我试图在online demo中运行上面的示例,我得到了:

Hi !

我也试过pystache(pystache 0.3.1,Python 2.7.2):

import pystache

tmpl = """
{{#person}}
  Hi {{name}}!
{{/person}}
"""

dct = {
  "person": { "name": "Jon" }
}

print(pystache.render(tmpl, dct))

我收到了一个错误:

Traceback (most recent call last):
  File "test2.py", line 13, in <module>
    print(pystache.render(tmpl, dct))
  File "c:\Python27\lib\site-packages\pystache\__init__.py", line 7, in render
    return Template(template, context).render()
  File "c:\Python27\lib\site-packages\pystache\template.py", line 42, in render
    template = self.render_sections(template, context)
  File "c:\Python27\lib\site-packages\pystache\template.py", line 78, in render_sections
    insides.append(self.render(inner, item))
  File "c:\Python27\lib\site-packages\pystache\template.py", line 43, in render
    result = self.render_tags(template, context)
  File "c:\Python27\lib\site-packages\pystache\template.py", line 97, in render_tags
    replacement = func(self, tag_name, context)
  File "c:\Python27\lib\site-packages\pystache\template.py", line 105, in render_tag
    raw = context.get(tag_name, '')
AttributeError: 'str' object has no attribute 'get'

我对列表没有任何问题,所以下面的结构运行良好:

{
   "person?": [{ "name": "Jon" }]
}

我可以通过输入dict预处理(展平或更改字典到列表)进行解决,但为什么它不起作用?我做错了吗?


pystache问题的解决方案

位于PyPI的pystache版本真的很旧(从2010年5月开始),这就是问题所在。来自GitHub的版本要新得多(嵌套词典的问题不会出现)。

1 个答案:

答案 0 :(得分:0)

除非我们知道在context下发生了什么:

File "c:\Python27\lib\site-packages\pystache\template.py", line 43, in render
 result = self.render_tags(template, context)
File "c:\Python27\lib\site-packages\pystache\template.py", line 97, in render_tags
 replacement = func(self, tag_name, context)
File "c:\Python27\lib\site-packages\pystache\template.py", line 105, in render_tag
 raw = context.get(tag_name, '')

很难知道它失败的原因以及解决方法成功的原因,因为最终context应该是dict而不是str

我建议您将此问题提交给pystache。他们认真对待他们的问题page