如何在Django响应对象中找到位置URL?

时间:2011-10-31 01:01:25

标签: django httpresponse http-response-codes

假设我有一个Django响应对象。

我想找到网址(位置)。 但是,响应标头实际上不包含Location或Content-Location字段。

如何从此响应对象中确定它显示的URL?

2 个答案:

答案 0 :(得分:8)

这是旧的,但在进行单元测试时我遇到了类似的问题。以下是我解决问题的方法。

您可以使用response.redirect_chain和/或response.request['PATH_INFO']来抓取重定向网址。

查看文档! Django Testing Tools: assertRedirects

from django.core.urlresolvers import reverse
from django.test import TestCase


class MyTest(TestCase)
    def test_foo(self):
        foo_path = reverse('foo')
        bar_path = reverse('bar')
        data = {'bar': 'baz'}
        response = self.client.post(foo_path, data, follow=True)
        # Get last redirect
        self.assertGreater(len(response.redirect_chain), 0)
        # last_url will be something like 'http://testserver/.../'
        last_url, status_code = response.redirect_chain[-1]
        self.assertIn(bar_path, last_url)
        self.assertEqual(status_code, 302)
        # Get the exact final path from the response,
        # excluding server and get params.
        last_path = response.request['PATH_INFO']
        self.assertEqual(bar_path, last_path)
        # Note that you can also assert for redirects directly.
        self.assertRedirects(response, bar_path)

答案 1 :(得分:5)

响应不会决定网址,请求也是如此。

回复会为您提供回复的内容,而不是回复的网址。