Question

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

Était-ce utile?

La 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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top