具体是这样子的,在服务器上用django上面通过下面的代码返回一个pdf
response = HttpResponse(content_type='application/pdf')
response.write(pdf)
return response
现在在我的电脑上能够得到这个pdf,其它电脑上却不能够,请问这是为什么?
response = HttpResponse(content_type='application/pdf')
response.write(pdf)
return response
现在在我的电脑上能够得到这个pdf,其它电脑上却不能够,请问这是为什么?