我想在django成功发布评论时更改您重定向到的网址 - 我宁愿被带到评论发布到的页面,而不是当前重定向到'感谢您的评论'网址。有没有我可以在django中覆盖它的地方?感谢
答案 0 :(得分:5)
只需在评论表单旁边添加一个隐藏字段,并在表单发布后添加您要重定向的网址的值。
文档示例:
<input type="hidden" name="next" value="{% url my_comment_was_posted %}" />
https://docs.djangoproject.com/en/dev/ref/contrib/comments/#redirecting-after-the-comment-post