Trong dự án Django tôi nhận được hai đối tượng khi tôi nhận được phản hồi JSONLàm thế nào để bổ sung thêm đối tượng để ngon json bánh trở lại trong python django
data.meta
và data.objects
Đây là tài nguyên của tôi
class MyResource(ModelResource):
def dehydrate(self, bundle):
bundle.data["absolute_url"] = bundle.obj.get_absolute_url()
bundle.data['myfields'] = MyDataFields
return bundle
class Meta:
queryset = MyData.objects.all()
resource_name = 'weather'
serializer = Serializer(formats=['json'])
ordering = MyDataFields
bây giờ tôi muốn các lĩnh vực khác trong json như
data.myfields
nhưng nếu tôi làm theo cách trên thì trường sẽ được thêm vào mỗi đối tượng như
data.objects.myfields
làm thế nào tôi có thể làm data.myfields
Cảm ơn bạn, bạn đã làm lại lần nữa – user825904