python - 反转 'update_comment',参数为 '(' ',)' not found. 1 pattern(s) tried: [' comment\\/(?P<news_pk>[0-9]+)$']

标签 python django django-models django-forms django-templates

我正在编写一个新闻网站。现在我正在详细介绍评论发布功能。遇到这个问题说:

Reverse for 'update_comment' with arguments '('',)' not found. 1 pattern(s) tried: ['comment\\/(?P<news_pk>[0-9]+)$']

我已经尝试了很多方法和次数,但仍然无法解决,我也找不到我的代码有任何问题。真的需要你的帮助。

评论发布功能在news_detail.html 中。我的项目中有两个重要的应用新闻操作评论模型正在操作

这是我的root urls.py:

path('news', include(('news.urls', 'news'), namespace="news")),
path('', include(('operation.urls', 'operation'), namespace="operation")),

这是 news/urls.py

path('-<int:news_pk>', newsDetailView, name="news_detail")

这是操作/urls.py:

path('comment/<int:news_pk>', views.update_comment, name="update_comment"),

这里是 news/view.py

def newsDetailView(request, news_pk):
    news = News.objects.get(id=news_pk)
    title = news.title
    author = news.author_name
    add_time = news.add_time
    content = news.content
    category = news.category
    tags = news.tag.annotate(news_count=Count('news'))

    all_comments = NewsComments.objects.filter(news=news)
    return render(request, "news_detail.html", {
        'title': title,
        'author': author,
        'add_time': add_time,
        'content': content,
        'tags': tags,
        'category': category,
        'all_comments': all_comments,
    })

这里是operation/views.py

def update_comment(request, news_pk):
    news = News.objects.get(id=news_pk)
    comment_form = CommentForm(request.POST or None)
    if request.method == 'POST' and comment_form.is_valid():
        if not request.user.is_authenticated:
            return render(request, 'login.html', {})
        comments = comment_form.cleaned_data.get("comment")
        news_comment = NewsComments(user=request.user, comments=comments, news=news)
        news_comment.save()

        return render(request, "news_detail.html", {
            'news_comment': news_comment,
            'news':news
        })

这是 news_detail.html:

{% if user.is_authenticated %}

<form method="POST" action="{% url 'operation:update_comment' news.pk %}">{% csrf_token %}              

<textarea id="js-pl-textarea" name="comment"></textarea>      

<input type="submit" id="js-pl-submit" value="发表评论"></input></form>

最佳答案

您没有将 news 对象传递到 news_detail.html 的上下文中。您可以通过传递 news 并在模板中执行类似 {{ news.title }} 的操作来简化 View (而不是 {{ title }} ):

def newsDetailView(request, news_pk):
    news = get_object_or_404(News, id=news_pk)
    tags = news.tag.annotate(news_count=Count('news'))
    all_comments = NewsComments.objects.filter(news=news)

    return render(request, "news_detail.html", {
        'news': news,
        'tags': tags,
        'all_comments': all_comments,
    })

现在 news.pk 将作为您的 {% url ... %} 标签的参数。如果找不到 news 对象(在您的代码中,它会崩溃),我还确保生成 404 错误。

关于python - 反转 'update_comment',参数为 '(' ',)' not found. 1 pattern(s) tried: [' comment\\/(?P<news_pk>[0-9]+)$'],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50014809/

相关文章:

python - 如何将笔记本从 github 拉到谷歌云数据实验室?

python - Django 模型同步表

python - Django 查询上的 value() 方法后的计数和最大值

python - cython float64 错误,尽管 float32 特别设置

python - 如何旋转 x 标签或 y 标签? (hvplot 或全息图)

python - pandas 数据框中前几行的累积计数

python - 在 Django 模型中访问外部字段

python - 我可以添加对媒体 django 媒体文件的权限吗?

python - 如何使用 django rest 框架序列化一个带有直通模型的 ManyToManyField

python - Django 信号与重写保存方法