API'dan aldığım verilerden bir dizi oluşturmak için hedefleme yapıyorum. Ancak bana cannot read property 'push' of undefined Javascript
hatasını gösteriyor.Özellik 'unatfined' push 'okunamıyor AngularJS
Bana bir çıkış yolu işaret edebilir mi? Eğer birkaç yerde kaynak mispelled
myService.getData().then(function (res) {
$scope.resoureceGroupsRawData = res.data;
//declare an array already...
$scope.resourceGroupItems = new Array();
}, function(error) {
throw error;
}).then(function() {
_.forEach($scope.resoureceGroupsRawData, function(text, idx) {
var item = {};
item.id = idx++;
item.label = text;
//why it says resourceGroupItems is null?
$scope.resouceGroupItems.push(item);
});
}, function(err) {
});
Hataya sahip olan satırdaki "rsouceGroupItems" ikinci "r" eksik. –