美文网首页
content type 使我写的api变成了文件下载

content type 使我写的api变成了文件下载

作者: 邪恶的奥伯伦 | 来源:发表于2018-11-01 16:47 被阅读0次

    情况是这样的 我用tornado render了一个简单的页面, 结果用浏览器打开 却提示让我下载, 下载之后是原本应该显示的 页面内容.

    后来发现是content type在作怪.

    tornado 默认使用的content typeapplication/json 这个是可以让浏览器解析页面的内容的

    但是我在nginx里把这个api的路由 不小心加上了
    add_header Content-Type application/x-www-form-urlencoded;

    Screenshot from 2018-11-01 16-47-16.png

    nginx重写response的header是发生在最后一步, 所以 最后面的 Content-Type application/x-www-form-urlencoded 生效了

    所以这个页面 因为是 x-www-form-urlencoded 这个属性, 就会提示让你下载..

    相关文章

      网友评论

          本文标题:content type 使我写的api变成了文件下载

          本文链接:https://www.haomeiwen.com/subject/fdvxxqtx.html