angularjs - 无法读取未定义的属性'hasOwnProperty'

时间:2016-12-01 09:18:30

标签: javascript angularjs

这是我的代码:

var getserverstatus = function () {
            $http.get(FSERVERSTATUS)
                .then(function (data) {
                    data.data.forEach(function (staItem) {
                        if (!$scope.serverInfo.data.hasOwnProperty(staItem.hostId)) {
                            console.log(staItem);
                        }
                        else {
                            staItem.changeNum = 1;
                            angular.extend($scope.serverInfo.data [staItem.hostId], staItem);
                            // angular.extend($scope.listInfo.data [staItem.id], {changeNum:1});
                        }
                    });
                })
        };
        getserverstatus();

我的浏览器显示此错误:

Cannot read property 'hasOwnProperty' of undefined

我正在使用angularjs

0 个答案:

没有答案