创建后如何设置django HttpResponse内容?

时间:2019-07-17 01:03:17

标签: python django

在烧瓶中,我们可以使用response.set_data(r),但是如何在Django中做到这一点?

response = HttpResponse(text)

1 个答案:

答案 0 :(得分:0)

如果您在之前的代码中设置了Content-Length,则需要重置Content-Length,否则:

  

ERR_CONTENT_LENGTH_MISMATCH

...将会发生。

response.content='11112222'
# response['Content-Length'] = len(response.content)