假设我有一个 Django 响应对象。
我想找到 URL(位置)。但是,响应标头实际上并不包含 Location 或 Content-Location 字段。
如何从这个响应对象中确定它显示的 URL?
假设我有一个 Django 响应对象。
我想找到 URL(位置)。但是,响应标头实际上并不包含 Location 或 Content-Location 字段。
如何从这个响应对象中确定它显示的 URL?
这是旧的,但我在进行单元测试时遇到了类似的问题。这是我解决问题的方法。
您可以使用response.redirect_chain
和/或response.request['PATH_INFO']
来获取重定向网址。
也请查看文档! Django 测试工具: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)
响应不决定 url,请求决定。
响应为您提供响应的内容,而不是它的 url。