错误:[$ injector:unpr]未知提供者:ServiceProvider

时间:2018-05-15 21:08:28

标签: angularjs ionic-framework

执行离子服务时出现此错误,供应商无法识别我,我将它们添加到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();
        });
    } 
};

0 个答案:

没有答案