Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
W
WebPublic
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
前端开发小组
WebPublic
Commits
b7a21c62
提交
b7a21c62
authored
8月 30, 2022
作者:
钟是志
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
导出文件接口需要加密 /DataObjApi/exportCurrent
上级
15360bbc
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
14 行增加
和
5 行删除
+14
-5
encryptApiList.js
one_stop_public/Base16/encryptApiList.js
+3
-0
downloadFile.js
zyd_public/utils/downloadFile.js
+11
-5
没有找到文件。
one_stop_public/Base16/encryptApiList.js
浏览文件 @
b7a21c62
...
@@ -21,6 +21,9 @@ const encryptApiList = [
...
@@ -21,6 +21,9 @@ const encryptApiList = [
{
{
api
:
'DataObjApi/addFormData'
,
api
:
'DataObjApi/addFormData'
,
},
},
{
api
:
'DataObjApi/exportCurr'
,
},
{
{
api
:
'DataColumnApi/add'
,
api
:
'DataColumnApi/add'
,
},
},
...
...
zyd_public/utils/downloadFile.js
浏览文件 @
b7a21c62
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform'
;
import
urlTransform
from
'@/webPublic/zyd_public/request/urlTransform'
;
import
FormdataWrapper
from
'@/webPublic/zyd_public/utils/object-to-formdata-custom'
;
import
FormdataWrapper
from
'@/webPublic/zyd_public/utils/object-to-formdata-custom'
;
import
{
notification
}
from
'antd'
;
import
{
notification
}
from
'antd'
;
import
{
getHeaders
,
getIsBei_Dian
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
getHeaders
}
from
'@/webPublic/zyd_public/utils/utils'
;
import
{
proxyChangeUrl
}
from
'@/webPublic/zyd_public/request/proxyChangeUrl'
;
/**
/**
* 本地开发可能会存在跨域问题
* 本地开发可能会存在跨域问题
...
@@ -10,8 +10,13 @@ import { proxyChangeUrl } from '@/webPublic/zyd_public/request/proxyChangeUrl';
...
@@ -10,8 +10,13 @@ import { proxyChangeUrl } from '@/webPublic/zyd_public/request/proxyChangeUrl';
* 2022年7月8日
* 2022年7月8日
* 如果ext 传空字符串 则从response.headers 中获取文件名
* 如果ext 传空字符串 则从response.headers 中获取文件名
* */
* */
export
function
downloadFile
(
url
,
params
,
fileName
=
'导出文件'
,
ext
=
'xlsx'
,
method
=
'POST'
)
{
export
function
downloadFile
(
url
=
proxyChangeUrl
(
url
);
url
,
params
,
fileName
=
'导出文件'
,
ext
=
'xlsx'
,
method
=
'POST'
,
)
{
url
=
urlTransform
(
url
);
url
=
urlTransform
(
url
);
let
responseHeadersFileName
=
''
;
let
responseHeadersFileName
=
''
;
...
@@ -26,7 +31,8 @@ export function downloadFile(url, params, fileName = '导出文件', ext = 'xlsx
...
@@ -26,7 +31,8 @@ export function downloadFile(url, params, fileName = '导出文件', ext = 'xlsx
return
res
.
json
();
return
res
.
json
();
}
else
{
}
else
{
const
contentDisposition
=
res
.
headers
.
get
(
'content-disposition'
);
const
contentDisposition
=
res
.
headers
.
get
(
'content-disposition'
);
let
fileNameEncode
=
contentDisposition
&&
contentDisposition
.
split
(
'filename='
);
let
fileNameEncode
=
contentDisposition
&&
contentDisposition
.
split
(
'filename='
);
if
(
fileNameEncode
.
length
>
1
)
{
if
(
fileNameEncode
.
length
>
1
)
{
fileNameEncode
=
fileNameEncode
[
1
];
fileNameEncode
=
fileNameEncode
[
1
];
responseHeadersFileName
=
decodeURIComponent
(
escape
(
fileNameEncode
));
responseHeadersFileName
=
decodeURIComponent
(
escape
(
fileNameEncode
));
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论