找不到反应 js 模块:无法解析 'file-saver'
react js Module not found: Can't resolve 'file-saver'
我正在学习一个教程,突然间我收到了这个错误。我已经尝试了所有解决方案并重新安装模块。但在其他 class 中,相同的代码有效
这是我的代码
import fileSaver from 'file-saver';
uploadPensiun(event) {
const files = event.target.files
const formData = new FormData()
formData.append('Pensiun', files)
fetch('http://localhost:5000/uploadpensiun', {
method: 'POST',
body: 'Pensiun',
headers: {
'Accept': 'application/json',
'Content-Type': 'multipart/form-data'
},
})
.then(res => res.json())
.then(data => console.log(data))
.catch((err) => console.log(err));
}
有人可以帮帮我吗?
安装 file-saver
使用 npm:
npm install file-saver
或用纱线:
yarn add file-saver
我正在学习一个教程,突然间我收到了这个错误。我已经尝试了所有解决方案并重新安装模块。但在其他 class 中,相同的代码有效
这是我的代码
import fileSaver from 'file-saver';
uploadPensiun(event) {
const files = event.target.files
const formData = new FormData()
formData.append('Pensiun', files)
fetch('http://localhost:5000/uploadpensiun', {
method: 'POST',
body: 'Pensiun',
headers: {
'Accept': 'application/json',
'Content-Type': 'multipart/form-data'
},
})
.then(res => res.json())
.then(data => console.log(data))
.catch((err) => console.log(err));
}
有人可以帮帮我吗?
安装 file-saver
使用 npm:
npm install file-saver
或用纱线:
yarn add file-saver