mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-04 20:12:51 +08:00
fix: fetch demo error
This commit is contained in:
parent
98ed84b2b3
commit
609a26b847
@ -37,10 +37,14 @@ export function withoutToken() {
|
||||
export function dictData() {
|
||||
return request.Get('/getDictData', {
|
||||
transformData(rawData, _headers) {
|
||||
const { data } = rawData as any
|
||||
const response = rawData as any
|
||||
return {
|
||||
gender: data.gender === 0 ? '男' : '女',
|
||||
status: `状态是${data.status}`,
|
||||
...response,
|
||||
data: {
|
||||
...response.data,
|
||||
gender: response.data.gender === 0 ? '男' : '女',
|
||||
status: `状态是${response.data.status}`,
|
||||
},
|
||||
}
|
||||
},
|
||||
})
|
||||
@ -57,10 +61,15 @@ export function getBlob(url: string) {
|
||||
|
||||
/* 带进度的下载文件 */
|
||||
export function downloadFile(url: string) {
|
||||
return blankInstance.Get(url, {
|
||||
const methodInstance = blankInstance.Get<Blob>(url, {
|
||||
// 开启下载进度
|
||||
enableDownload: true,
|
||||
})
|
||||
methodInstance.meta = {
|
||||
// 标识为bolb数据
|
||||
isBlob: true,
|
||||
}
|
||||
return methodInstance
|
||||
}
|
||||
/* 测试状态码500失败 */
|
||||
export function FailedRequest() {
|
||||
|
@ -135,7 +135,6 @@ export const useRouteStore = defineStore('route-store', {
|
||||
})
|
||||
|
||||
resultRouter = arrayToTree(resultRouter) as AppRoute.Route[]
|
||||
console.warn('🚀 ~ createRoutes ~ resultRouter:', resultRouter)
|
||||
this.setRedirect(resultRouter)
|
||||
const appRootRoute: RouteRecordRaw = {
|
||||
path: '/appRoot',
|
||||
|
@ -112,24 +112,16 @@ function getDictData() {
|
||||
msg.value = res
|
||||
})
|
||||
}
|
||||
|
||||
const filePath = ref('https://images.unsplash.com/photo-1663529628961-80aa6ebcd157?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=764&q=80')
|
||||
// 模拟获取二进制文件
|
||||
const imagePath = ref('https://images.unsplash.com/photo-1663529628961-80aa6ebcd157?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=764&q=80')
|
||||
function getBlobFile() {
|
||||
getBlob(imagePath.value).then((res) => {
|
||||
msg.value = 'this is blob!'
|
||||
const link = URL.createObjectURL(res)
|
||||
const eleLink = document.createElement('a')
|
||||
eleLink.download = 'okk'
|
||||
eleLink.style.display = 'none'
|
||||
eleLink.href = link
|
||||
document.body.appendChild(eleLink)
|
||||
eleLink.click()
|
||||
document.body.removeChild(eleLink)
|
||||
getBlob(filePath.value).then((res) => {
|
||||
downloadLink(res, 'BlobOk')
|
||||
})
|
||||
}
|
||||
// 下载大文件获取进度
|
||||
const downloadPath = ref('https://suqiqi.oss-cn-beijing.aliyuncs.com/test/video/1.mp4')
|
||||
const { downloading, abort: abortDownloadFile, send: sendDownloadFile } = useRequest(downloadFile(downloadPath.value), {
|
||||
// 下载文件获取进度
|
||||
const { downloading, abort: abortDownloadFile, send: sendDownloadFile } = useRequest(downloadFile(filePath.value), {
|
||||
// 当immediate为false时,默认不发出
|
||||
immediate: false,
|
||||
})
|
||||
@ -138,6 +130,21 @@ const downloadProcess = computed(() => {
|
||||
return 0
|
||||
return Math.floor(downloading.value.loaded / downloading.value.total * 100)
|
||||
})
|
||||
async function handleDownloadFile() {
|
||||
const res = await sendDownloadFile()
|
||||
downloadLink(res, 'fileOk')
|
||||
}
|
||||
|
||||
function downloadLink(data: Blob, name: string) {
|
||||
const link = URL.createObjectURL(data)
|
||||
const eleLink = document.createElement('a')
|
||||
eleLink.download = name
|
||||
eleLink.style.display = 'none'
|
||||
eleLink.href = link
|
||||
document.body.appendChild(eleLink)
|
||||
eleLink.click()
|
||||
document.body.removeChild(eleLink)
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
@ -194,12 +201,12 @@ const downloadProcess = computed(() => {
|
||||
</n-descriptions-item>
|
||||
<n-descriptions-item label="带进度的下载文件" :span="3">
|
||||
<n-space vertical>
|
||||
<n-input v-model:value="downloadPath" />
|
||||
<n-input v-model:value="filePath" />
|
||||
<div>文件大小:{{ downloading.total }}B</div>
|
||||
<div>已下载:{{ downloading.loaded }}B</div>
|
||||
<n-progress type="line" indicator-placement="inside" :percentage="downloadProcess" />
|
||||
<n-space>
|
||||
<n-button strong secondary @click="sendDownloadFile">
|
||||
<n-button strong secondary @click="handleDownloadFile">
|
||||
开始下载
|
||||
</n-button>
|
||||
<n-button strong secondary type="warning" @click="abortDownloadFile">
|
||||
|
Loading…
x
Reference in New Issue
Block a user