有没有人有解决方案可以在提交表单或更新后反转并重定向到 Django 中的页面

问题描述 投票:0回答:1

我通过单击类别 ID 重定向到目标列表,我想添加其他目标,然后重定向到目标列表,但在 /planningCycle/goal_update/15/ 处显示错误 NoReverseMatch

Reverse for 'planning' with no arguments not found. 1 pattern(s) tried: ['planningCycle/planning/(?P<id>[0-9]+)/\\Z']

enter image description here我的views.pyenter image description here我的urls.pyenter image description here我的html

python django redirect reverse
1个回答
0
投票

这个错误非常不言自明,它尝试获取一个名为

planning
且不带任何参数的 URL。您显示的模板与
add_goal
相关,因此错误将出现在模板中的其他位置。

© www.soinside.com 2019 - 2024. All rights reserved.