有没有办法在匹配 url 之前更改 request.path?

发布于 2025-01-06 09:15:13 字数 299 浏览 0 评论 0 原文

当我收到包含“self”一词的路径请求时,我想在将其与 URL 匹配之前将其替换为用户 ID。我尝试使用这样的中间件:

def process_request(self, request):
    if '/self/' in request.path:
        request.path = request.path.replace('/self/','/' + str(request.user.id) + '/')

替换有效,但显然是在 URL 匹配之后完成的。有什么办法可以改变这一点之前的路径吗?

When I get a request for a path that includes the word 'self' I want to replace it with the user id before matching it to a URL. I tried using a middleware like this:

def process_request(self, request):
    if '/self/' in request.path:
        request.path = request.path.replace('/self/','/' + str(request.user.id) + '/')

The replacement works but apparently is done after the URL matching. Is there any way to alter the path before this point?

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

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

发布评论

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

评论(2

谁的新欢旧爱 2025-01-13 09:15:13

显然,URL 行进不是使用 request.path 完成的,而是使用 request.path_info 完成的。改变这个变量的相同中间件是有效的。

Apparently, the URL marching is not done using request.path but request.path_info. The same middleware altering this variable works.

幻想少年梦 2025-01-13 09:15:13

为什么要更改 url,然后匹配新的 url?为什么不将 url 直接指向您想要的视图和方法,然后像更改 url 一样处理 request.user.id 呢?

也许另一个例子可以说明您正在尝试做的事情。

(因为我无法发表评论,所以将此作为答案)

Why do you want to change the url, then match that new url? Why not have the url direct to the view and method you want, then work on the request.user.id like you would had you changed the url?

Perhaps another example would illustrate what you are trying to do.

(Making this an answer since I can't comment)

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