Question

Can we directly print dictionary using json.dumps (testdictionary) in view of web2py. Returning test dictionary from the controller

Was it helpful?

Solution

Yes, though by default the text will be escaped, so to avoid that, use XML().

{{=XML(json.dumps(testdictionary))}}

Actually, might be cleaner to call json.dumps in the controller.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top