- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 charfield 和 choicefield 的多值字段。我需要将选择传递给 choicefield 构造函数,但是当我尝试将其传递到自定义多值字段时,我收到错误 __init__()
获得了意外的关键字参数“choices”。
我知道代码的其余部分有效,因为当我从 __init__
和 super 中删除choices关键字参数时,多值字段显示正确,但没有任何选择。
这就是我设置自定义多值字段的方法:
class InputAndChoice(object):
def __init__(self, text_val='', choice_val=''):
self.text_val=text_val
self.choice_val=choice_val
class InputAndChoiceWidget(widgets.MultiWidget):
def __init__(self, attrs=None):
widget = (widgets.TextInput(),
widgets.Select()
)
super(InputAndChoiceWidget, self).__init__(widget, attrs=attrs)
def decompress(self,value):
if value:
return [value.text_val, value.choice_val]
return [None, None]
class InputAndChoiceField(forms.MultiValueField):
widget = InputAndChoiceWidget
def __init__(self, required=True, widget=None, label=None, initial=None,
help_text=None, choices=None):
field = (
fields.CharField(),
fields.ChoiceField(choices=choices),
)
super(InputAndChoiceField, self).__init__(fields=field, widget=widget,
label=label, initial=initial, help_text=help_text, choices=choices)
我这样调用它:
input_and_choice = InputAndChoiceField(choices=[(1,'first'),(2,'second')])
那么如何将选项传递到 ChoiceField 字段?
编辑:
我已经尝试过 stefanw 的建议,但仍然没有成功。我已经使用logging.debug在init和self.fields[1].choices末尾打印出InputAndChoiceField的内容。choices包含如上所述的正确值,但它不会在浏览器中显示任何选择。
最佳答案
我遇到了完全相同的问题并像这样解决了它:
class InputAndChoiceWidget(widgets.MultiWidget):
def __init__(self,*args,**kwargs):
myChoices = kwargs.pop("choices")
widgets = (
widgets.TextInput(),
widgets.Select(choices=myChoices)
)
super(InputAndChoiceWidget, self).__init__(widgets,*args,**kwargs)
class InputAndChoiceField(forms.MultiValueField):
widget = InputAndChoiceWidget
def __init__(self,*args,**kwargs):
# you could also use some fn to return the choices;
# the point is, they get set dynamically
myChoices = kwargs.pop("choices",[("default","default choice")])
fields = (
fields.CharField(),
fields.ChoiceField(choices=myChoices),
)
super(InputAndChoiceField,self).__init__(fields,*args,**kwargs)
# here's where the choices get set:
self.widget = InputAndChoiceWidget(choices=myChoices)
将“choices”kwarg 添加到小部件的构造函数中。然后在创建字段后显式调用构造函数。
关于Django MultiValueField - 如何将选择传递给 ChoiceField?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1617454/
我正在尝试制作一个不需要最后一个字段的 MultiValueField。 根据文档,如果我将 require_all_fields 设置为 False,那么我可以将一些字段设置为不需要,如下所示:-
我正在尝试基于动态创建其字段的 MultiValueField 创建自定义小部件。类似的东西: class MyField(MultiValueField): def __init__(sel
在我的 Django 1.7 应用程序中,我尝试利用 MultiValueField 类来实现密码/确认密码表单元素,即两个单独的密码字段,要求用户输入然后确认新密码。我已经使用两个单独的字段和 cl
我有一个带有 charfield 和 choicefield 的多值字段。我需要将选择传递给 choicefield 构造函数,但是当我尝试将其传递到自定义多值字段时,我收到错误 __init__()
我到处搜索,我能找到的都是几年前的东西和/或不适用的东西。 我正在尝试将 MultiValueField 添加到我的表单中,以便人们可以轻松地输入一到三个输入。应该只需要这些字段中的第一个,但表单验证
我需要一个 MultiWidgets 来呈现 HTML,就像下面的 MultiValueField 一样: My Family Select One Father
我有一个带有外键的模型到另一个也有外键的模型。我正在使用 django 表单向导渲染它(尝试支持尽可能旧的 django 版本),这对 inlineformset 不友好。我希望用户在表单向导中输入模
Django 的文档没有详细解释如何使用 MultiValueField 和 MultiWidget。我试过剖析 one implementation并没有取得好的结果。有人介意给我一个正确方向的快速
我想从 Solr 中获取多值字段不为空的结果集合。这可能吗?谢谢! 最佳答案 如解释here ,您可以使用 field:[* TO *] 匹配所有 field 不为空的文档。 关于search - 如
我想从 Solr 中获取多值字段不为空的结果集合。这可能吗?谢谢! 最佳答案 如解释here ,您可以使用 field:[* TO *] 匹配所有 field 不为空的文档。 关于search - 如
我试图了解如何通过子类化 MultiWidgets 和 MultiValueFields 来创建表单。 我有一个简单的地址模型和相关表格: class Address(models.Model):
如果我的一个搜索索引上有一个 MultiValueField,并且我想在搜索结果中显示每个值,我该怎么做?似乎某些内容的格式不正确,或者我以某种方式误解了 MultiValueField? class
这是在 Django 1.9 中按预期工作的代码: class MultipleBooleanField(forms.MultiValueField): def __init__(self,
我是一名优秀的程序员,十分优秀!