豪气的炒饭 · php+mysql模拟队列发送邮件 · ...· 5 月前 · |
谦和的跑步鞋 · ggplot2画箱线图将线改成虚线 - 知乎· 1 年前 · |
旅行中的钥匙 · 第25课 std::thread对象的析构 ...· 1 年前 · |
大力的勺子 · 电子行业专题报告:AI硬件全景图 - 知乎· 1 年前 · |
急躁的投影仪 · python读取超大csv文件-掘金· 1 年前 · |
我是Django/Python的初学者,我需要创建一个多选择表单。我知道这很容易但我找不到任何例子。我知道如何用小部件创建CharField,但我对 fields.py 中的所有选项感到困惑。
例如,我不知道以下哪一个对于多个选择表单来说是最好的。
'ChoiceField', 'MultipleChoiceField',
'ComboField', 'MultiValueField',
'TypedChoiceField', 'TypedMultipleChoiceField'
这是我需要创建的表格。
<form action="" method="post" accept-charset="utf-8">
<select name="countries" id="countries" class="multiselect" multiple="multiple">
<option value="AUT" selected="selected">Austria</option>
<option value="DEU" selected="selected">Germany</option>
<option value="NLD" selected="selected">Netherlands</option>
<option value="USA">United States</option>
</select>
<p><input type="submit" value="Continue →"></p>
</form>
编辑:
还有一个小问题。如果我想在每个选项中再添加一个属性,比如数据
<option value="AUT" selected="selected" data-index=1>Austria</option>
我该怎么做呢?
谢谢你的帮助!
发布于 2013-03-13 18:41:55
我认为
CheckboxSelectMultiple
应该根据你的问题来工作。
在您的
forms.py
中,编写以下代码:
from django import forms
class CountryForm(forms.Form):
OPTIONS = (
("AUT", "Austria"),
("DEU", "Germany"),
("NLD", "Neitherlands"),
Countries = forms.MultipleChoiceField(widget=forms.CheckboxSelectMultiple,
choices=OPTIONS)
在您的
views.py
中,定义以下函数:
def countries_view(request):
if request.method == 'POST':
form = CountryForm(request.POST)
if form.is_valid():
countries = form.cleaned_data.get('countries')
# do something with your results
else:
form = CountryForm
return render_to_response('render_country.html', {'form': form},
context_instance=RequestContext(request))
在你的
render_country.html
里
<form method='post'>
{% csrf_token %}
{{ form.as_p }}
<input type='submit' value='submit'>
</form>
发布于 2013-03-13 18:49:15
我是这样做的:
forms.py
class ChoiceForm(ModelForm):
class Meta:
model = YourModel
def __init__(self, *args, **kwargs):
super(ChoiceForm, self).__init__(*args, **kwargs)
self.fields['countries'] = ModelChoiceField(queryset=YourModel.objects.all()),
empty_label="Choose a countries",)
urls.py
from django.conf.urls.defaults import *
from django.views.generic import CreateView
from django.core.urlresolvers import reverse
urlpatterns = patterns('',
url(r'^$',CreateView.as_view(model=YourModel, get_success_url=lambda: reverse('model_countries'),
template_name='your_countries.html'), form_class=ChoiceForm, name='model_countries'),)
your_countries.html
<form action="" method="post">
{% csrf_token %}
{{ form.as_table }}
<input type="submit" value="Submit" />
</form>
这在我的例子中很好,如果你需要更多的东西,就问我吧!!
发布于 2013-03-18 13:04:55
关于我的第二个问题,这是解决办法。扩展类:
from django import forms
from django.utils.encoding import force_unicode
from itertools import chain
from django.utils.html import escape, conditional_escape
class Select(forms.Select):
A subclass of Select that adds the possibility to define additional
properties on options.
It works as Select, except that the ``choices`` parameter takes a list of
3 elements tuples containing ``(value, label, attrs)``, where ``attrs``
is a dict containing the additional attributes of the option.
def render_options(self, choices, selected_choices):
def render_option(option_value, option_label, attrs):
option_value = force_unicode(option_value)
selected_html = (option_value in selected_choices) and u' selected="selected"' or ''
attrs_html = []
for k, v in attrs.items():
attrs_html.append('%s="%s"' % (k, escape(v)))
if attrs_html:
attrs_html = " " + " ".join(attrs_html)
else:
attrs_html = ""
return u'<option value="{0}"{1}{2}>{3}</option>'.format(
escape(option_value), selected_html, attrs_html,
conditional_escape(force_unicode(option_label))
return u'<option value="%s"%s%s>%s</option>' % (
escape(option_value), selected_html, attrs_html,
conditional_escape(force_unicode(option_label)))
# Normalize to strings.
selected_choices = set([force_unicode(v) for v in selected_choices])
output = []
for option_value, option_label, option_attrs in chain(self.choices, choices):
if isinstance(option_label, (list, tuple)):
output.append(u'<optgroup label="%s">' % escape(force_unicode(option_value)))
for option in option_label:
output.append(render_option(*option))
output.append(u'</optgroup>')
else:
output.append(render_option(option_value, option_label,
option_attrs))
return u'\n'.join(output)
class SelectMultiple(forms.SelectMultiple, Select):
谦和的跑步鞋 · ggplot2画箱线图将线改成虚线 - 知乎 1 年前 |
大力的勺子 · 电子行业专题报告:AI硬件全景图 - 知乎 1 年前 |
急躁的投影仪 · python读取超大csv文件-掘金 1 年前 |