How to create dynamic fields in Google App Engine expando class?

試著忘記壹切 提交于 2019-12-04 10:38:51

The syntax widget.k references the attribute k on object widget. To dynamically choose which attribute you set, use the built-in setattr method:

setattr(widget, k, v)

Dynamically setting an attribute like this will create the field on that particular entity.

Try:

for k, v in fields.items()
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!