gpt4 book ai didi

javascript - 弃用警告 : Calling an asynchronous function without callback is deprecated

转载 作者:搜寻专家 更新时间:2023-11-01 00:09:43 24 4
gpt4 key购买 nike

我正在研究 electron + angularjs 。当我使用 id3js 时,我开始遇到 DeprecationWarning: Calling an asynchronous function without callback is deprecated. 问题从 mp3 文件中读取标签。

id3({file: pathtofile,type: id3.OPEN_LOCAL}, function(err, tags) {
if (err) {
console.log(err);
} else {
console.log(tags);}
});

代码从 mp3 文件中重新调整标签,但继续生成此弃用警告

最佳答案

好吧,我通过更改 id3js 库文件来解决问题他们使用 fs.open 所以我将其更改为

fs.openSync(self.file, 'r', function(err, fd) {
if(err) {
return callback(err);
}
self.fd = fd;
callback();
});

没问题了,我会在git上提交这个

关于javascript - 弃用警告 : Calling an asynchronous function without callback is deprecated,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45462096/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com