如何在 Django 通知中使用动作对象和目标

how to use action object and target in django notifications

我正在使用 django 开发一个项目,比如 webapp 之类的博客。我正在使用 django 通知作为我的网站通知。如果有人对我的 post 发表评论或喜欢 post。但是我无法通过单击通知从通知转到特定的 post。 我的 views.py :

@login_required
def like_post(request):
# posts = get_object_or_404(Post, id=request.POST.get('post_id'))
posts = get_object_or_404(post, id=request.POST.get('id'))
# posts.likes.add for the particular posts and the post_id for the post itself its belongs to the post without any pk
is_liked = False
if posts.likes.filter(id=request.user.id).exists():
    posts.likes.remove(request.user)
    is_liked = False
else:
    posts.likes.add(request.user)
    is_liked = True
    notify.send(request.user, recipient=posts.author, actor=request.user, verb='liked your post.', nf_type='liked_by_one_user')

context = {'posts':posts, 'is_liked': is_liked, 'total_likes': posts.total_likes(),}



if request.is_ajax():
    html = render_to_string('blog/like_section.html', context, request=request)
    return JsonResponse({'form': html})

从项目的自述文件中,我们可以看到 Notification 模型允许您在 JSON 字段中存储额外的数据。要启用此功能,您首先需要将其添加到您的设置文件

DJANGO_NOTIFICATIONS_CONFIG = { 'USE_JSONFIELD': True}

这样做之后,您可以将目标对象的 url 作为 kwarg 传递给 notify.send 信号

,从而将其存储在字段中
notify.send(request.user, recipient=posts.author, actor=request.user, verb='liked your post.', nf_type='liked_by_one_user', url=object_url)

但是您应该注意,如果您更改 url conf,这样做会导致 link 损坏,因此另一种方法是创建一个视图 url =23=] 呈现通知时可以调用的目标对象 url。