代码
client.createPet(pet, (err, {name, breed, age}) => {
if (err) {
return t.error(err, 'no error')
}
t.equal(pet, {name, breed, age}, 'should be equivalent')
})
错误
client.createPet(pet, (err, {name, breed, age}) => {
^
TypeError: Cannot match against 'undefined' or 'null'.
为什么我收到此错误?我对ES6的了解促使我假设只有当数组或对象被解构或其子为undefined
或null
时才会出现此错误。
我不知道函数参数是用来匹配的。如果它们是,那么为什么我试图解构其中一个只是一个错误? (不是undefined
或null
)。
答案 0 :(得分:69)
只有在被解构的数组或对象或其子节点为
undefined
或null
时才会出现此错误。
完全。在您的情况下,被解构的对象是undefined
或null
。例如,
function test(err, {a, b, c}) {
console.log(err, a, b, c);
}
test(1, {a: 2, b: 3, c: 4});
// 1 2 3 4
test(1, {});
// 1 undefined undefined undefined
test(1);
// TypeError: Cannot match against 'undefined' or 'null'.