Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我没有得到 HttpResponse n HttpResponseRedirect 之间的区别
HttpResponseRedirect旨在发送 3xx HTTP 代码并重定向到另一个 URL(即,响应是重定向标头)。它实际上是 的子类HttpResponse,可以用作重定向的快捷方式。
HttpResponseRedirect
HttpResponse
HttpResponse, 另一方面是主要的响应对象,您可以在其中设置标题/正文等(并且是您通常用于发送渲染模板等的东西 - 好的,render_to_response 也可以,但它是一个快捷功能)。