後我在掙扎着,我認爲應該很簡單。
我想查看從查詢()返回多少項目,但使用長度不適用於我。
這是我的代碼
getItems = function() {
// retrieve the list
theList = Users.query();
theList.$promise.then(function (res) {
console.log("success");
})
.catch(function (req) {
console.log("error");
})
.finally(function() {
});
return theList;
}
$scope.users = getItems();
console.log($scope.users.length);
這是我的$資源:
.factory('Users', function ($resource) {
return $resource('https://example.com/:id', { id: '@id' }, {
update: { method: 'PUT' }
});
})
控制檯顯示,即使有列表中的項目0。
任何想法我做錯了什麼?
其中是代碼中的$資源? – Aravind