就像是
my_model.data_dict['my_field']
哪个会为您提供该字段的当前值?需要这样的东西才能与我的其他代码交互。
最佳答案
您可能还想看看queryset上的values方法。它将为任何查询返回字典,而不是通常的模型实例。
https://docs.djangoproject.com/en/1.3/ref/models/querysets/#values
(来自文档)
>>> Blog.objects.filter(name__startswith='Beatles').values()
[{'id': 1, 'name': 'Beatles Blog', 'tagline': 'All the latest Beatles news.'}]
关于python - Django模型是否有包含所有当前值的数据字典?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/3937635/