Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
uni-app
提交
0f1ecd18
U
uni-app
项目概览
DCloud
/
uni-app
4 个月 前同步成功
通知
726
Star
38705
Fork
3642
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
7
列表
看板
标记
里程碑
合并请求
1
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
U
uni-app
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
7
Issue
7
列表
看板
标记
里程碑
合并请求
1
合并请求
1
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
提交
0f1ecd18
编写于
12月 03, 2020
作者:
Q
qiang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix(h5): 优化 downloadFile 文件名(当用于 uploadFile 等其他接口时用到)
上级
f4fd013c
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
1 deletion
+26
-1
src/platforms/h5/helpers/file.js
src/platforms/h5/helpers/file.js
+10
-0
src/platforms/h5/service/api/network/download-file.js
src/platforms/h5/service/api/network/download-file.js
+16
-1
未找到文件。
src/platforms/h5/helpers/file.js
浏览文件 @
0f1ecd18
...
...
@@ -55,6 +55,16 @@ function getExtname (type) {
const
extname
=
type
.
split
(
'
/
'
)[
1
]
return
extname
?
`.
${
extname
}
`
:
''
}
/**
* 简易获取文件名
* @param {*} url
*/
export
function
getFileName
(
url
)
{
url
=
url
.
split
(
'
#
'
)[
0
].
split
(
'
?
'
)[
0
]
const
array
=
url
.
split
(
'
/
'
)
return
array
[
array
.
length
-
1
]
}
/**
* blob转File
* @param {Blob} blob
...
...
src/platforms/h5/service/api/network/download-file.js
浏览文件 @
0f1ecd18
import
{
fileToUrl
}
from
'
uni-platform/helpers/file
'
import
{
fileToUrl
,
getFileName
}
from
'
uni-platform/helpers/file
'
/**
* 下载任务
*/
...
...
@@ -63,6 +66,18 @@ export function downloadFile ({
clearTimeout
(
timer
)
const
statusCode
=
xhr
.
status
const
blob
=
this
.
response
let
filename
// 使用 getResponseHeader 跨域时会出现警告,但相比 getAllResponseHeaders 更方便
const
contentDisposition
=
xhr
.
getResponseHeader
(
'
content-disposition
'
)
if
(
contentDisposition
)
{
// 暂时仅解析 filename 不解析 filename*
const
res
=
contentDisposition
.
match
(
/filename="
?(\S
+
)
"
?\b
/
)
if
(
res
)
{
filename
=
res
[
1
]
}
}
blob
.
name
=
filename
||
getFileName
(
url
)
console
.
log
(
blob
)
invoke
(
callbackId
,
{
errMsg
:
'
downloadFile:ok
'
,
statusCode
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录