我按照https://django-import-export.readthedocs.io/中的文档使用django-import-export
包导出我的国家/地区模型:
class Country(models.Model):
class Meta:
db_table = 'country'
verbose_name_plural = 'countries'
ordering = ['iso_code']
iso_code = models.CharField(
verbose_name='ISO code',
help_text='2-character ISO country code',
max_length=2,
blank=False,
)
un_code = models.CharField(
verbose_name='UN code',
help_text='3-character UN country code',
max_length=3,
blank=False,
)
english_name = models.CharField(
verbose_name='English name',
help_text='Country name in English',
max_length=100,
blank=False,
)
国家/地区模型的资源是:
class CountryResource(resources.ModelResource):
class Meta:
model = Country
export_order = ('id', 'iso_code', 'un_code', 'english_name')
要导出模型,我运行:
>>> dataset = CountryResource().export()
>>> print(dataset.csv)
结果(部分):
id,iso_code,un_code,english_name
6,AD,AND,Andorra
217,AE,ARE,United Arab Emirates
1,AF,AFG,Afghanistan
8,AI,AIA,Anguilla
请注意,结果按国家模型的Meta类中给出的iso_code
列排序。但是,如果不更改模型的Meta类中指定的顺序,我只想在导出期间导出按其他列排序的记录。例如,我想要按id
排序的导出记录。我怎么能实现这一目标?谢谢。
答案 0 :(得分:1)
您可以根据需要重新定义get_queryset方法并对查询集进行排序
class CountryResource(resources.ModelResource):
class Meta:
model = Country
export_order = ('id', 'iso_code', 'un_code', 'english_name')
def get_queryset(self):
return self._meta.model.objects.order_by('id')