django-import-export如何处理GenericRelations?

时间:2019-04-09 02:18:19

标签: python django django-import-export django-generic-relations

我正在使用django-import-export模块导出记录。但是,我无法导出通用关系。我只想获取GenericRelation的所有详细信息。

在Github中找到了以下代码段,但是它不起作用。

class DudeResource(resources.ModelResource):
    address = fields.Field(
        column_name='address',
        attribute='address',
        widget=widgets.ForeignKeyWidget(Address, 'name'))  # use a unique field

    class Meta:
        model = Dude
        fields = ['address']

我的模型

Company
|-- Name
|--- Address(Generic Relation)

Address
|--content_type
|--object_id
|--content_object
|--line_1
|--line_2
|--city
|--country

我只需要导入/导出line_1,line_2,城市和国家/地区。有人可以帮我吗?谢谢!

1 个答案:

答案 0 :(得分:0)

您是否尝试过指定像这样的字段...

DudeResource类(resources.ModelResource):

class Meta:
    model = Dude
    fields = ['address__line_1', 'address__line_2', 'address__city',
              'address__line_1', 'address__country', ]