8

所以我使用 jQuery UI 来为单选按钮设置皮肤,但我无法让 Django 以必须完成的方式呈现我的表单。

我需要有这样的结构:

<table>
    <tr>
        <td><label for="notify_new_friends">Notify when new friends join</label></td>
        <td class="radio">
            <input type="radio" name="notify_new_friends" id="notify_new_friends_immediately" value="1" checked="checked"/><label for="notify_new_friends_immediately">Immediately</label>
            <input type="radio" name="notify_new_friends" id="notify_new_friends_never" value="0"/><label for="notify_new_friends_never">Never</label>
        </td>
    </tr>
</table>

所以总结一下,我需要一个类(单选)中的单选按钮,它们有一个input和一个label for

当我在模板中呈现表单时,{{ profile_form.notify_new_friends }}我得到以下信息:

<ul>
    <li><label for="id_notify_new_friends_0"><input type="radio" id="id_notify_new_friends_0" value="0" name="notify_new_friends" /> Immediately</label></li>
    <li><label for="id_notify_new_friends_1"><input type="radio" id="id_notify_new_friends_1" value="1" name="notify_new_friends" /> Never</label></li>
</ul>

这正是我想要的,除了列表部分。所以我尝试循环它,这给了我不同格式的标签:

{% for item in profile_form.notify_new_friends %}
    {{ item }}
{% endfor %}

这给了我:

<label><input type="radio" name="notify_new_friends" value="0" /> Immediately</label>
<label><input type="radio" name="notify_new_friends" value="1" /> Never</label>

所以这里的问题是它停止使用label for并开始使用只是label为了包装它。

我也尝试过做这样的事情,但是然后labellabel_tag没有渲染任何东西。

{{ profile_form.notify_new_friends.0 }}
{{ profile_form.notify_new_friends.0.label_tag }}
{{ profile_form.notify_new_friends.0.label }}

那么有谁知道我怎样才能正确渲染这个!?

仅供参考,这是我的 forms.py:

self.fields['notify_new_friends'] = forms.ChoiceField(label='Notify when new friends join', widget=forms.RadioSelect, choices=NOTIFICATION_CHOICES)
4

5 回答 5

10

在我的代码中,我发现将小部件从

forms.RadioSelect

forms.RadioSelect(attrs={'id': 'value'})

神奇地导致结果tag值包含id附加项目索引的属性。如果你使用

{% for radio in form.foo %}
    <li>
        {{ radio }}
    </li>
{% endfor %}

在表单中,您会得到label一个input. 如果你想要更常规的input后跟label,你需要这样做:

{% for radio in form.value %}
    <li>
        {{ radio.tag }}
        <label for="value_{{ forloop.counter0 }}">{{ radio.choice_label }}</label>
    </li>
{% endfor %}
于 2013-02-14T11:39:46.007 回答
3

不幸的是,这比应该的要复杂,看来您至少需要覆盖 2 个类:RadioRendererRadioInput. 以下内容应该可以帮助您入门,但您可能需要稍微调整一下。

首先创建一个自定义单选按钮输入小部件。我们重写 render 方法的唯一目的是摆脱烦人的结构 Django 强制执行 ( <label><input /></label>) 而我们想要我们的 ( <label /><input />):

class CustomRadioInput(RadioInput):
    def render(self, name=None, value=None, attrs=None, choices=()):
        name = name or self.name
        value = value or self.value
        attrs = attrs or self.attrs
        if 'id' in self.attrs:
            label_for = ' for="%s_%s"' % (self.attrs['id'], self.index)
        else:
            label_for = ''
            choice_label = conditional_escape(force_unicode(self.choice_label))
            return mark_safe(u'%s<label%s>%s</label>' % (self.tag(), label_for, choice_label))

现在我们需要重写RadioRenderer以便:

  1. 强制它使用我们的自定义无线电输入小部件
  2. 删除<li>包装每个输入字段并<ul>包装所有输入字段:

这些方面应该做的事情:

class RadioCustomRenderer(RadioFieldRenderer):
    def __iter__(self):
        for i, choice in enumerate(self.choices):
            yield CustomRadioInput(self.name, self.value, self.attrs.copy(), choice, i)

    def __getitem__(self, idx):
        choice = self.choices[idx]
        return CustomRadioInput(self.name, self.value, self.attrs.copy(), choice, idx)

    def render(self):
        return mark_safe(u'%s' % u'\n'.join([u'%s' % force_unicode(w) for w in self]))

最后指示 Django 使用自定义渲染器

notify_new_friends = forms.ChoiceField(label='Notify when new friends join', widget=forms.RadioSelect(renderer=RadioCustomRenderer), choices=NOTIFICATION_CHOICES)

请记住:现在这会输出单选按钮和包含,<td>因此您需要在模板中围绕它构建一个表格,如下所示:

<table>
  <tr>
    <td><label for="{{field.auto_id}}">{{field.label}}</label></td>
    <td>{{ field.errors }} {{field}}</td>
  </tr>
</table>
于 2013-04-11T14:42:18.970 回答
2

如果有人偶然发现这个问题并且只想在没有 ul 的情况下呈现单选按钮:他们应该点击这个链接。

https://docs.djangoproject.com/en/3.1/ref/forms/widgets/#selector-widgets

下面的例子。

{% for radio in myform.beatles %}
    <div class="myradio">
    {{ radio }}
    </div>
{% endfor %}
于 2020-09-17T13:13:25.957 回答
1

由于这似乎不是一个好方法,我选择使用 jQuery 重新排列生成的代码。

// First remove the ul and li tags
$('.radio ul').contents().unwrap();
$('.radio li').contents().unwrap();
// Then move the input to outside of the label
$('.radio > label > input').each(function() {
    $(this).parent().before(this);
});
// Then apply the jQuery UI buttonset
$( ".radio" ).buttonset();

这使它从:

<ul>
    <li><label for="id_notify_new_friends_0"><input type="radio" id="id_notify_new_friends_0" value="0" name="notify_new_friends" /> Immediately</label></li>
    <li><label for="id_notify_new_friends_1"><input type="radio" id="id_notify_new_friends_1" value="1" name="notify_new_friends" /> Never</label></li>
</ul>

到:

<input type="radio" id="id_notify_new_friends_0" value="0" name="notify_new_friends" /><label for="id_notify_new_friends_0"> Immediately</label></li>
<input type="radio" id="id_notify_new_friends_1" value="1" name="notify_new_friends" /><label for="id_notify_new_friends_1"> Never</label></li>

我的 jQuery UI 样式工作正常。

于 2012-07-19T10:09:28.467 回答
0
Try like this ,  I got it..

from django.forms.widgets import RadioFieldRenderer
from django.utils.encoding import force_unicode
from django.utils.safestring import mark_safe


class RadioCustomRenderer( RadioFieldRenderer ):
    def render( self ):
        return  mark_safe(u'%s' % u'\n'.join([u'%s'  % force_unicode(w) for w in self]))

in form

widgets = {
            'validity': forms.RadioSelect(renderer=RadioCustomRenderer),
        }
于 2013-03-31T07:14:15.093 回答