执行离子服务时出现此错误,供应商无法识别我,我将它们添加到index.html中
service.js
"source": {
"properties" : {
"category" : { "type": "text"},
"country" : { "type": "text"},
"lang" : { "type": "text"}
},
controller.js
angular.module('starter').service('ProdutosService', ProdutosService);
ProdutosService.$inject = ['$http', '$q'];
function ProdutosService($http, $q){
return {
lista: lista
};
function lista() {
return $http.get('comprar/productos.json')
.then(function(response) {
return response.data.productos;
})
.catch(function(error){
$q.reject();
});
}
};