这是我的代码:
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
。