我使用authenticate_user!
连接到REST API。我使用以下代码定义restangular
:
ProductService.js
我在'use strict';
angular.module('app').service('ProductService', function($rootScope, Restangular) {
// Build collection /product URL
var _productService = Restangular.all('product');
this.list = function() {
// GET /api/product
return _productService.getList();
}
this.create = function(product) {
// POST /api/product/:id
_productService.post(product).then(function() {
$rootScope.$broadcast('product.create');
});
}
});
中使用此服务:
ProductController.js
答案 0 :(得分:0)
我解决了问题并将$object
添加到ProductService.js
中的列表函数:
this.list = function() {
// GET /api/product
return _productService.getList().$object;
}