在DeleteView通用视图中访问kwargs

发布于 2024-11-15 16:54:44 字数 538 浏览 3 评论 0原文

我正在创建一个需要访问方法外部的 kwargs 的 DeleteView,如下所示:

class DeletePost(DeleteView):

    """
    Delete a post. Post deletion is only reserved to space
    administrators or site admins.
    """
    context_object_name = "get_place"
    success_url = '/spaces/' + kwargs['space_name']

    def get_object(self):       
        return get_object_or_404(Post, pk=self.kwargs['post_id'])

但显然,参数和关键字参数不能在方法外部使用。我还尝试在 get 方法中建立 success_url,但 django 无法识别它。如何获取space_name参数?我试图避免覆盖视图核心方法,如dispatch() 等。

I'm creating a DeleteView which needs to access to kwargs outside of the methods, like this:

class DeletePost(DeleteView):

    """
    Delete a post. Post deletion is only reserved to space
    administrators or site admins.
    """
    context_object_name = "get_place"
    success_url = '/spaces/' + kwargs['space_name']

    def get_object(self):       
        return get_object_or_404(Post, pk=self.kwargs['post_id'])

But apparently, arguments and keyword arguments can't be used outside the methods. I also tried to stablish the success_url inside the get method, but django does not recognize it. What can I do to obtain the space_name parameter? I'm trying to avoid overriding the view core methods like dispatch() and such.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無處可尋 2024-11-22 16:54:44

覆盖 get_success_url() 方法。

Override the get_success_url() method.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文