我的网站无法为“ cars.testdrive”构建URL端点,并且出现以下错误:
werkzeug.routing.BuildError werkzeug.routing.BuildError:无法为端点“ cars.testdrive”构建URL。您是说“ auth.register”吗?
在base.html中,我具有以下链接:
在routes.py中,我具有该代码的return语句:
关于我做错了什么/如何解决的任何想法?
<li><a href="{{ url_for('cars.testdrive') }}">Book a Test Drive</a></li>
return redirect(url_for('cars.testdrive', id=new_id))
return render_template(url_for('cars/testdrive.html', title='Test Drive', form=form))