Сообщение от nerv_
|
или я чего то не понимаю, или по аналогии
|
Не понял... И ресурс это не провайдер? его нельзя в конфиге настроить
P.S. Restangular'е это выглядит так:
// Restangular returns promises
Restangular.one('users').getList() // GET: /users
.then(function(users) {
// returns a list of users
$scope.user = users[0]; // first Restangular obj in list: { id: 123 }
})
// Later in the code...
// Restangular objects are self-aware and know how to make their own restful requests
$scope.user.getList('cars'); // GET: /users/123/cars
// You can also use your own custom methods on Restangular objects
$scope.user.sendMessage(); // POST: /users/123/sendMessage
// Chain methods together to easily build complex requests
$scope.user.one('messages', 123).one('from', 123).getList('unread');
// GET: /user/123/messages/123/from/123/unread