gpt4 book ai didi

javascript - Node.js回调函数错误参数解释?

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

我对 javascript 有基本的了解,并且一直在学习异步函数在 node.js 中的工作原理。我一直对带有参数错误的回调函数感到很困惑。例如,这里有一些代码:

contact.saveContacts = function(contactArray, done) {
var jsonfile = require('jsonfile')
jsonfile.writeFile('data.json', contactArray, done)
}

Contact.saveContacts(contacts, function(err) {
console.log('success')
}

我的问题是,为什么回调函数包含参数错误?我很困惑为什么它在那里,因为它似乎在它调用的函数中没有任何作用。

最佳答案

这是一种称为错误优先回调的模式,在 javascript 中被大量使用。

参见 this article供引用。

关于javascript - Node.js回调函数错误参数解释?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31375728/

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