我想在filterArr中调用filterArr。这是我的实施。
filterArr(array, search) {
var result = [];
array.forEach((a)=> {
var temp = [],
o = {},
found = false;
if (a.name === search) {
this.o.name = a.name;
found = true;
}
if (Array.isArray(a.children)) {
temp = this.filterArr(a.children, search);//***Cannot read property 'filterArr' of undefined***
if (temp.length) {
this.o.children = temp;
found = true;
}
}
if (found) {
result.push(o);
}
});
return result;
}
如何在没有任何错误的情况下调用filterArr方法?
答案 0 :(得分:2)
您必须使用Arrow function
来保持正确的this
,因此您需要更改array.forEach(function (a) {
以使用`箭头功能
array.forEach((a) => {