function openFileDialog() {
dialog.showOpenDialog(win, {
properties: ['openFile']
} , filepath => {
if (filepath) {
fs.writeFile('path.txt', filepath, function (err, data) {
if (err) console.log(err);
});
scanFile(filepath)
}
})
}
function scanFile(filepath) {
if(!filepath || filepath[0] == 'undefined') return;
console.log(filepath)
fs.readFile(filepath,"utf8", (err,data) => { // ----> *ERROR*
if(err) console.log(err);
var arr = [];
if (data.substr(-4) === '.mp3' || data.substr(-4) === '.m4a'
|| data.substr(-5) === '.webm' || data.substr(-4) === '.wav'
|| data.substr(-4) === '.aac' || data.substr(-4) === '.ogg'
|| data.substr(-5) === '.opus') {
arr.push(files[i]);
}
var objToSend = {};
objToSend.files = arr;
objToSend.path = filepath;
win.webContents.send('selected-files', objToSend)
})
}
我试图制作电子音乐播放器应用。第一步是打开我的文件。当我打开文件时,“ TypeError [ERR_INVALID_ARG_TYPE]:“ path”参数必须是字符串,Buffer或URL类型之一。收到的类型未定义”,该错误发生并且错误消息显示scanFile(filepath),fs.readFile(〜 〜)导致错误。我该如何解决?
答案 0 :(得分:1)
scanFile
的第一行显示为:
if(!filepath || filepath[0] == 'undefined') return;
这向我表明filepath
是一个数组,而不是字符串(或Buffer或URL)。检查console.log
语句的输出,看是否是这种情况。由于if
语句正在检查filepath[0]
,所以我将从此处开始并更新代码以读取fs.readFile(filepath[0],"utf8", (err,data) => {
,因为if
语句暗示filepath[0
]是您应该使用的值