Reward.objects.get()
返回一個對象,但是如何在Python/Django中返回序列化爲Tastypie的所有對象?在Tastypie中使用脫水返回所有對象
def dehydrate(self, bundle):
res = super(SchemeResource, self).obj_update(bundle)
rewards = Reward.objects.get()
bundle.data['reward_participants'] = rewards
return res
即上述給我<Reward object>
而不是所有獎勵的清單。
我想你問的是一個對象的字典中返回的嘗試[ST .__在獎勵dict__爲ST] –
也看到這裏:http://stackoverflow.com/questions/13565975/convert-a-queryset-to-json-using-tastypie-resource –