更加优雅的下载文件 --- http header Content-Disposition 学习

更加优雅的下载文件 --- http header Content-Disposition 学习

Content-Disposition 在响应头中,告诉浏览器如何处理返回的内容,在表单提交中,说明表单字段信息。

在响应头中

用在响应头中,告诉浏览器如何处理返回的内容。

'Content-Disposition': 'inline'

预览,返回的内容替换当前页面,可使用 a 标签的 target="_blank" 打开新标签。

'Content-Disposition': 'attachment'

下载,使用 a 访问,会把路径作为名字,文件后缀名浏览器自动识别。

'Content-Disposition': 'attachment;filename=filename'

下载,接口指定文件名字。

文件名含有中文,使用 encodeURIComponent 编码,否则报错。

Invalid character in header content [“Content-Disposition”]。

在请求头中

页面上有表单,并且我们选择的表单提交方式为 multipart/form-data 时, Content-Disposition 会出现在请求体中。

可能会这样出现:

Content-Disposition: form-data
Content-Disposition: form-data; name="fieldName"
Content-Disposition: form-data; name="fieldName"; filename="filename.jpg"

实例代码

a 标签的 download 属性

downloada 标签的属性,用于指定下载动作或者指定文件的名字。

<!-- 下载 -->
<a href="http://localhost:3000/download" download>download</a>
<!-- 下载且指定名字 -->
<a href="http://localhost:3000/download" download="filename">download</a>

download 用于指定名字,如果不指定,浏览器会使用路径的最后一部分作为文件名。

/**
 * 从链接下载文件
 * @param {string} fileId 文件 id
 * @param {string} fileName 文件名,默认为 ''
 * @param {string} path 文件下载路径,默认为 FILE_PATH
 * @example downloadFile('123', '文件名') // 下载 文件名.docx
 * @example downloadFile('docFile') // 下载 docFile.docx
 * @example downloadFile('docFile','file-name','download/path') // 下载 docFile.docx
 */
export function downloadFile(fileId, fileName = '', path = FILE_PATH) {
  if (!fileId) return
  const dotIndex = fileName.lastIndexOf('.')
  const name = dotIndex > 0 ? fileName.slice(0, dotIndex) : fileName
  const dateName = dayjs().format('YYYY年MM月DD日HH时mm分ss秒')
  const a = document.createElement('a')
  a.setAttribute('download', name || dateName)
  a.href = `${path}/${fileId}?fileName=${fileName}`
  a.click()
  a.remove()
}

指定文件名字成功的两个条件:

  • 同源
  • 接口没设置 Content-Dispositionfilename 属性

小结

  • Content-Disposition 用于告诉浏览器如何处理返回的内容,用在响应头中,可用于下载文件。
  • a标签用于的 download 属性用于下载文件,同源,且接口没设置 Content-Dispositionfilename 属性才能指定文件名字。
  • 8
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值