7

情况:我有一个用于搜索的表单,我在结果页面上返回相同的表单供用户过滤他们的结果。为了摆脱垃圾输入,我实现了一个 clean_xxx 方法。

不幸的是,即使已清理该表单,该表单仍会在带有垃圾输入的结果页面上返回。如何获得要显示的干净数据?

这里有一些想法:

  1. 在clean_xxx方法中,设置self.data.xxx=clean_xxx值
  2. 使用cleaned_data 重新初始化一个新表单。

表格.py:

    SearchForm:
    def clean_q(self):
    q = self.cleaned_data.get('q').strip()
    # Remove Garbage Input
    sanitized_keywords = re.split('[^a-zA-Z0-9_ ]', q)
    q = "".join(sanitized_keywords).strip()

    #TODO: Fix
    self.data['q'] = q

    return q

视图.py

    search_form = SearchForm(params, user=request.user)
    if  search_form.is_valid():
        # Build the Query from the form
        # Retrieve The Results

    else:
        # For errors, no results will be displayed
        _log.error('Search: Form is not valid. Error = %s' %search_form.errors)

    response = {
                'search_form': search_form...
    }

谢谢你的帮助。

4

1 回答 1

1

无论您从 clean_xxx 方法返回什么,都会显示什么。因此,例如:

表格.py:

class SearchForm(forms.Form):
    def clean_q(self):
        return "spam and eggs"

在上面的示例中,该字段将显示“垃圾邮件和鸡蛋”。

如果它不这样做,那么问题很可能在于您的方法的验证逻辑。

于 2012-04-15T05:45:39.537 回答