Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm having problems getting data from a dictionary that I pass to the templator in web.py.

For example, when I render with

return render.resp({'foo':'bar'})

Then in my template try

$def with (test)
$test.foo

I get the error "'dict' object has no attribute 'foo'"

share|improve this question

1 Answer

That's not the right syntax for accessing a dictionary. Try this:

$test['foo']

Alternatively, pass in a web.storage:

return render.resp(web.storage({'foo': 'bar'}))
share|improve this answer
yep that's it. thanks – mdogg Mar 12 '12 at 3:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.