使用我的最终解决方案更新了。
我编写了一个自定义Django表单小部件来创建范围查询。它呈现两个输入字段以定义查询的最小值和最大值。
使用精心设计的表单和小部件,可以使用上一个查询中的值填充字段,如下所示:
form = my_form(request.GET)
但是,我无法找到一种方法来填充自定义小部件中这些字段的值。这是小部件代码:
class MinMax(Widget):
input_type = None # Subclasses must define this.
def _format_value(self, value):
if self.is_localized:
return formats.localize_input(value)
return value
def render(self, name, value, attrs=None):
if value is None:
value = ''
final_attrs = self.build_attrs(attrs, type=self.input_type, name=name)
if value != '':
# Only add the 'value' attribute if a value is non-empty.
final_attrs['value'] = force_unicode(self._format_value(value))
return mark_safe(u'<input type="text" name="min-%s" /> to
<input type="text" name="max-%s" />' % (name, name) )
可能由于自定义输入字段名称,无法访问这些值。有没有办法路由它们,或者是一种重写窗口小部件以包含这些有用功能的方法?我能想到的一个非小部件解决方案是一些简单的jquery逻辑,但这不是最优的。
以下是我最终使用的代码:
class MinMax(MultiWidget):
def __init__(self, attrs=None):
""" pass all these parameters to their respective widget constructors..."""
widgets = (forms.TextInput(attrs=attrs), forms.TextInput(attrs=attrs) )
super(MinMax, self).__init__(widgets, attrs)
def decompress(self, value):
return value or ''
def value_from_datadict(self, data, files, name):
value = ''
for key, value in data.items():
value += value
def format_output(self, rendered_widgets):
"""
Given a list of rendered widgets (as strings), it inserts stuff
between them.
Returns a Unicode string representing the HTML for the whole lot.
"""
rendered_widgets.insert(-1, ' to ')
return u''.join(rendered_widgets)
请注意,这些字段将作为fieldname_0,fieldname_1返回(如果添加其他小部件,则依此类推)。