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

有帮助吗?

解决方案

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.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top