如何在typescript中递归调用方法

时间:2017-06-21 10:16:03

标签: javascript angular typescript

我想在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方法?

1 个答案:

答案 0 :(得分:2)

您必须使用Arrow function来保持正确的this,因此您需要更改array.forEach(function (a) {以使用`箭头功能

array.forEach((a) => {