欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

django表单实现下拉框的示例讲解

程序员文章站 2023-12-03 10:18:10
方法一: queue = forms.modelchoicefield(label=u'队列',queryset=queue.objects.all())...

方法一:

queue = forms.modelchoicefield(label=u'队列',queryset=queue.objects.all())

方法二:

 class serverform(forms.form):
 queue = forms.choicefield(label=u'队列')
 def __init__(self,*args,**kwargs):
  super(serverform,self).__init__(*args,**kwargs)
  self.fields['queue'].choices=((x.que,x.disr) for x in queue.objects.all())

注意:在queue模型的__unicode__()函数中返回你下拉菜单需要显示的字段

以上这篇django表单实现下拉框的示例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。