我正在使用$resource
來向服務器發出請求。 我的代碼是無法訪問對象的屬性
service.js
.factory('userServ',function($resource){
return $resource('url/:id',{id:'@id'},{
me: 'GET',isArray:false,url:'url2'}
});
})
我使用這個服務在控制器這樣
$scope.userDetails = userService.me();
console.log($scope.userDetails) // gives all the details of the user
console.log($scope.userDetails.username) // gives undefined. But username is there in the object
那麼,如何可以訪問從對象
你需要把'.then'回調放在你的服務方法call..and裏面那個回調有成功和錯誤回調 –
@PankajParkar你爲什麼不發表一個答案? – dfsq