如何过滤元组中的第二个元素?
在我的模型中,我有一个字段:
country = models.CharField(_('Country'), max_length=2, choices=COUNTRIES)
其中 COUNTRIES 是这样的元组的元组:
COUNTRIES = (
('AF', _('Afghanistan')),
... 等等
现在我想按国家/地区名称过滤该模型的实例。
这:
i = MyModel.objects.filter(country__iexact=query)
只允许我按国家/地区代码进行过滤。
如何按国家/地区名称过滤?
In my model I have a field:
country = models.CharField(_('Country'), max_length=2, choices=COUNTRIES)
Where COUNTRIES is a tuple of tuples like this:
COUNTRIES = (
('AF', _('Afghanistan')),
... and so on
Now I want to filter an instance of that model, by the country name.
This:
i = MyModel.objects.filter(country__iexact=query)
only lets me filter by the country code.
How can I filter by country name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法直接按国家/地区名称进行过滤(
选项
仅在 UI 中使用,而不在数据库中使用)。如果您获得全名作为输入,请在
COUNTRIES
元组中查找代码。例如:You cannot filter directly by the country name (the
choices
are only used in the UI, not in the database).If you get the full name as an input, lookup the code in the
COUNTRIES
tuple-of-tuples. For example: