Django 表单,从不同模型获取选择框
嘿,假设我有 2 个型号列表和类别。
我将如何使用 djangos 表单框架自动创建类别的选择下拉框?
class NewListingForm(forms.Form):
name = forms.CharField(required=True)
description = forms.CharField(widget=forms.Textarea, required=True)
category ...
Hay, say i have 2 models listing and category.
How would i use djangos form framework to automatically create a select drop down box for category?
class NewListingForm(forms.Form):
name = forms.CharField(required=True)
description = forms.CharField(widget=forms.Textarea, required=True)
category ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ModelChoiceField
ModelChoiceField