我想在用户单击预览后但在再次显示给他们之前更改从表单收集的数据。
class StoryForm(forms.Form):
title = forms.CharField()
story = forms.CharField(widget=forms.Textarea)
class StoryFormPreview(FormPreview):
def done(self, request, cleaned_data):
# Do something with the cleaned_data, then redirect
# to a "success" page.
return HttpResponseRedirect('/form/success')
在显示预览之前,我想附加到用户为故事字段输入的任何内容,并添加“由某某带给您”。我该怎么做呢?我用 process_preview 和 preview_post 方法玩了很多,但什么都做不了。