情况:我有一个用于搜索的表单,我在结果页面上返回相同的表单供用户过滤他们的结果。为了摆脱垃圾输入,我实现了一个 clean_xxx 方法。
不幸的是,即使已清理该表单,该表单仍会在带有垃圾输入的结果页面上返回。如何获得要显示的干净数据?
这里有一些想法:
- 在clean_xxx方法中,设置self.data.xxx=clean_xxx值
- 使用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...
}
谢谢你的帮助。