美文网首页
Express The header content conta

Express The header content conta

作者: lceCola | 来源:发表于2019-01-08 14:24 被阅读0次

    在用Express开发的时候,因为需要导出一个excel表格供用户下载,但是在设置响应头的时候,出现了一点问题,在express中,我使用了原生node的方式设置content-disposition响应头

    res.setHeader("Content-Disposition","attachment;filename=充值记录表.xls")
    

    但是却报了这个错误

    TypeError: The header content contains invalid characters
    

    解决方案
    使用express提供的attachment方法完美解决

    res.attachment('充值记录表.xls')
    

    作者:小辣抓
    来源:CSDN
    原文:https://blog.csdn.net/HaoDaWang/article/details/77679820

    相关文章

      网友评论

          本文标题:Express The header content conta

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