有没有办法在匹配 url 之前更改 request.path?
当我收到包含“self”一词的路径请求时,我想在将其与 URL 匹配之前将其替换为用户 ID。我尝试使用这样的中间件:
def process_request(self, request):
if '/self/' in request.path:
request.path = request.path.replace('/self/','/' + str(request.user.id) + '/')
替换有效,但显然是在 URL 匹配之后完成的。有什么办法可以改变这一点之前的路径吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
显然,URL 行进不是使用
request.path
完成的,而是使用request.path_info
完成的。改变这个变量的相同中间件是有效的。Apparently, the URL marching is not done using
request.path
butrequest.path_info
. The same middleware altering this variable works.为什么要更改 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)