搜尋

首頁  >  問答  >  主體

javascript - angular js Unknown provider錯誤

    var app=angular.module("myApp",['ng']);
    app.factory('$cart',['$scope',function($scope){
        return {
            add:function(){
                $scope.pList.push({price:8000,count:Math.floor(Math.random()*100+1)});
            },
            del:function(index){
                $scope.pList.splice(index,1);
            }
        }
    }]);
    app.controller('myCtrl',['$scope','$cart',function($scope,$cart){
        $scope.pList=[
            {price:2000,count:Math.floor(Math.random()*100+1)},
            {price:3000,count:Math.floor(Math.random()*100+1)},
            {price:5000,count:Math.floor(Math.random()*100+1)},
            {price:9000,count:Math.floor(Math.random()*100+1)}
        ];
        $scope.handleAdd=function(){
            $cart.add();
        };
        $scope.handleDelete=function(){
            $cart.del();
        }
    }]);

這段程式碼會報如下錯誤:angular.js:12314 Error: [$injector:unpr] Unknown provider: $scopeProvider <- $scope <- $cart;
剛學angular 請大神知道π-π

#
女神的闺蜜爱上我女神的闺蜜爱上我2749 天前727

全部回覆(1)我來回復

  • 为情所困

    为情所困2017-06-30 09:57:05

    謝邀。
    factory、service 只有$rootScope,沒辦法知道局部的$scope的。

    回覆
    0
  • 取消回覆