我继承了调查控制器并创建了一个网站按钮来打开调查页面供申请人填写。我在使用令牌传递路线并在网站上调用它时遇到问题。当我单击按钮时,我收到一个找不到页面的错误。请指出我正确的方向。这就是我所做的。
继承控制器。
@http.route('/survey/start/<string:survey_token>', type='http', auth='public', website=True)
def survey_start(self, survey_token, answer_token=None, email=False, **post):
res = super(SurveyInherit, self).survey_start(survey_token, answer_token=None, email=False, **post)
return res
网站上打开调查的按钮:
<a role="button" t-attf-href="/survey/start/{{survey_token}}" class="btn btn-primary btn-lg">