日常开发记录-文件导出打不开
文件导出后,打不开,非后端问题
export const testAPI = () => { return request({ url: '/api/test/changeData', methods: 'post', // 如果导入接口忘记写下面两行代码,会导致导出的文件打不开 responseType: 'blob', headers: {'Content-type': 'application/json;charset=utf-8'} }) }
文件导出后,打不开,非后端问题
export const testAPI = () => { return request({ url: '/api/test/changeData', methods: 'post', // 如果导入接口忘记写下面两行代码,会导致导出的文件打不开 responseType: 'blob', headers: {'Content-type': 'application/json;charset=utf-8'} }) }