3

我一直在使用 Django import-export,以便可以从我的数据库中获取 csv 文件。这些 csv 文件有一些不相关的字段,因为它们在将项目放入数据库时​​被更改,因此我不希望它们出现在表中。

我遵循了导入导出的文档,但似乎无法正确排除这些字段。在我的 admin.py 文件中,我有:

from import_export import resources
from import_export.admin import ImportExportModelAdmin

class ArtAdmin(ImportExportModelAdmin):
    list_display = ['id', 'name', 'category', 'type', 'agent', 'authenticate', ]
    search_fields = ('name', 'category', 'artist', 'id', 'authenticate', )
    list_filter = ["authenticate"]
    actions = [approve_art, reject_art]

class ArtResource(resources.ModelResource):

    class Meta:
        model = Art
        exclude = ('authenticate', )

当我进入 python manage.py shell 并让它打印出 csv 它是我期望的那样,但是当我使用 python manage.py runserver 然后导出它时,我仍然会看到 authenticate 列,有人知道吗如何解决这个问题?

4

1 回答 1

5

您似乎忘记将资源类与您的模型管理员链接

class ArtResource(resources.ModelResource):

    class Meta:
        model = Art
        exclude = ('authenticate', )

    class ArtAdmin(ImportExportModelAdmin):
        resource_class = ArtResource

    list_display = ['id', 'name', 'category', 'type', 'agent', 'authenticate', ]
    search_fields = ('name', 'category', 'artist', 'id', 'authenticate', )
    list_filter = ["authenticate"]
    actions = [approve_art, reject_art]
于 2016-07-15T14:04:40.170 回答