0
我在從傳遞給web.py中的templator的字典中獲取數據時遇到問題。Web.py Templator字典
例如,當我
return render.resp({'foo':'bar'})
渲染然後在我的模板嘗試
$def with (test)
$test.foo
我得到錯誤 「 '字典' 對象有沒有屬性 '富'」
我在從傳遞給web.py中的templator的字典中獲取數據時遇到問題。Web.py Templator字典
例如,當我
return render.resp({'foo':'bar'})
渲染然後在我的模板嘗試
$def with (test)
$test.foo
我得到錯誤 「 '字典' 對象有沒有屬性 '富'」
這不是訪問字典的正確語法。試試這個:
$test['foo']
另外,通過在web.storage
:
return render.resp(web.storage({'foo': 'bar'}))
是的,就是這樣。謝謝 – mdogg 2012-03-12 03:45:26