在 django admin 中,我们可以根据选择进行多项选择吗
http://docs.djangoproject.com/en/dev/ref/ models/fields/#choices
我已通读文档,这意味着使用数据库表来存储动态数据,但它指出
选择适用于不会发生太大变化(如果有的话)的静态数据。
那么,如果我想使用选择,但让它选择多个,因为我使用的数据是相当静态的,例如一周中的几天。
有没有办法在没有数据库表的情况下实现这一点?
http://docs.djangoproject.com/en/dev/ref/models/fields/#choices
i've read through the documentation and this implies using a database table for dynamic data, however it states
choices is meant for static data that doesn't change much, if ever.
so what if i want to use choices, but have it select multiple because the data i'm using is quite static, e.g days of the week.
is there anyway to achieve this without a database table?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
ChoiceField 并不真正适合多种选择,而是我会使用 多对多字段。暂时忽略静态数据可以使用 Choices 代替foreignkey 的事实。如果事实证明这是一个性能问题,有多种方法可以以不同的方式表示它(一种是二进制掩码方法),但它们需要更多的工作。
ChoiceField is not really suitable for multiple choices, instead I would use a ManyToManyField. Ignore the fact that Choices can be used instead of ForeignKey for static data for now. If it turns out to be a performance issue, there are ways to represent this differently (one being a binary mask approach), but they require way more work.
这对我有用:
1)创建一个 Form 类并设置一个属性以向 MultipleChoiceField 提供静态选择
2)然后,如果您使用的是管理界面,请在管理类中设置表单属性,以便tit将使用您的自定义表单
This worked for me:
1) create a Form class and set an attribute to provide your static choices to a MultipleChoiceField
2) then, if you're using the admin interface, set the form attribute in your admin class so tit will use your customized form
尝试以下配置。在
models.py
中,在
forms.py
中,在
admin.py
中Try following configuration. In
models.py
in
forms.py
in
admin.py