能否在表格Wizard的()方法中查阅<代码>request变量?
class AddWizard(SessionWizardView):
def done(self, form_list, **kwargs):
if form_list[0].cleaned_data[ ad_type ] == 1 :
ad_type = basic
else:
ad_type = other
return render_to_response( business/done.html , {
form_data : ad_type,
},
context_instance = RequestContext(request)
)
我希望能查阅请求中的用户标语,但我不敢肯定,我会如何将请求转至已采用的方法?