0

我正在使用 django.contrib.comments 在博客上启用评论。

我在评论表单中添加了一个隐藏的“下一个”字段,其中包含我希望用户在提交评论后返回的网址,以绕过正常工作的posted.html模板:

<input name="next" type="hidden" value="{% url single_post slug=post.slug %}" />

但是,在执行评论 moderatar 后如下:

from django.contrib.comments.moderation import CommentModerator, moderator
class PostModerator(CommentModerator):
    email_notification = True

moderator.register(Post, PostModerator)

,有一个错误抱怨文件comments/comment_notification_email.txt 丢失,所以我创建了如下文件:

Comment: http://127.0.0.1{{ comment.get_absolute_url }}
From: {{ comment.person_name }}

-----
{{ comment.comment }}
-----

Admin: http://127.0.0.1/admin/comments/comment/{{comment.id}}/

但是现在,Django 抱怨请求 URL http://127.0.0.1:8000/comments/post/不存在?如何最好地解决这个问题?

4

1 回答 1

0

在单独的视图中进行重定向解决了我的问题:

网址.py

(r'^comments/post/', 'app.views.comment'),

视图.py

def comment(request):
    # Redirecting after comment submission
    return HttpResponseRedirect(request.POST['next'])
于 2010-11-16T16:33:55.210 回答