提交 10ea91a3 authored 作者: 钟是志's avatar 钟是志

使用fetch 模拟get 提交 获取 文件数据 并重命名文件数据

上级 0d58c9a8
......@@ -257,10 +257,10 @@ export function diGuiTree(treeData = [], i = 0) {
}
export function downloadFile(url, params, fileName = "导出文件", ext = "xlsx") {
export function downloadFile(url, params, fileName = "导出文件", ext = "xlsx", method = 'POST') {
fetch(url, {
method: "POST",
body: FormdataWrapper(params)
method,
body: method === 'GET' ? undefined : FormdataWrapper(params),
})
.then((res) => {
if (res.status + "" !== "200") {
......@@ -287,6 +287,7 @@ export function downloadFile(url, params, fileName = "导出文件", ext = "xlsx
}
})
.catch((err) => {
console.log(err);
notification.error({
message: `网络请求超时`
});
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论