Angularjs - 错误:[$ injector:unpr]

时间:2014-06-11 17:03:54

标签: angularjs angular-ui-bootstrap angularjs-injector

我试图在特定的Modal插件中使用Angular UI Bootstrap module。 我的app-folder以这种方式构建:

  • 应用
    • scheda
      • scheda.html
      • schedacontroller.js
    • app.js
  • CSS
  • ...
  • 的index.html

这是 app.js ,主应用程序文件:

// created the module GasistaFelice
// also included ngRoute for all our routing needs

angular.module('ngGasistaFelice', [])
.run(function($rootScope) {
    $rootScope.gasID = "10"; //default value
});

angular.module('ngGasistaFelice', ['ui.bootstrap']);

var GasistaFelice = angular.module('ngGasistaFelice', ['ngRoute']);

GasistaFelice.config(['$routeProvider',function($routeProvider) {
            $routeProvider
// route for the home page
            .when('/', {
                templateUrl : 'app/ordinare/ordinare.html',
                controller  : 'orderController'
            })

            // route for the paniere page
            .when('/:id/gasmember/:id/basket', {
                templateUrl : 'app/paniere/paniere.html',
                controller  : 'paniereController'
            })

            // route for the scheda page
            .when('/:id/profile', {
                templateUrl : 'app/scheda/scheda.html',
                controller  : 'schedaController'
            })

            // route for the conto page
            .when('/:id/gasmember/:id/cash', {
                templateUrl : 'app/conto/conto.html',
                controller  : 'contoController'
            })
            .otherwise({
                    redirectTo: '/'
                });
    }]);

... EXC

这是我想要放置Modal插件的页面的控制器:

var app = angular.module('ngGasistaFelice', ['ui.bootstrap']);
app.controller('schedaController', function ($scope, $routeParams, $modal, $log, $http) {
        var id = $routeParams.id;
        // --- URL finale --- 
        //var url = 'http://localhost:8000/gasistafelice/api/v1/person/id/?format=json';
        //URL di prova

        $scope.items = ['item1', 'item2', 'item3'];

          $scope.open = function (size) {

            var modalInstance = $modal.open({
              templateUrl: 'myModalContent.html',
              controller: ModalInstanceCtrl,
              size: size,
              resolve: {
                items: function () {
                  return $scope.items;
                }
              }
            });

            modalInstance.result.then(function (selectedItem) {
              $scope.selected = selectedItem;
            }, function () {
              $log.info('Modal dismissed at: ' + new Date());
            });
          };

当我加载包含schedaController的页面时,我不断收到此错误:

Error: [$injector:unpr] h ttp://errors.angularjs.org/1.2.16/$injector/unpr?p0=%24routeParamsProvider%20%3C-%20%24routeParams
    at Error (native)
    at http://localhost/GasistaFelice2_angular/js/angular.min.js:6:450
    at http://localhost/GasistaFelice2_angular/js/angular.min.js:35:431
    at Object.c [as get] (http://localhost/GasistaFelice2_angular/js/angular.min.js:34:13)
    at http://localhost/GasistaFelice2_angular/js/angular.min.js:35:499
    at c (http://localhost/GasistaFelice2_angular/js/angular.min.js:34:13)
    at d (http://localhost/GasistaFelice2_angular/js/angular.min.js:34:230)
    at Object.instantiate (http://localhost/GasistaFelice2_angular/js/angular.min.js:34:394)
    at http://localhost/GasistaFelice2_angular/js/angular.min.js:66:112
    at http://localhost/GasistaFelice2_angular/js/angular.min.js:53:14

谢谢

2 个答案:

答案 0 :(得分:4)

您使用不同的必需模块多次定义angular.module('ngGasistaFelice', [])(在module函数的第二个参数内):

angular.module('ngGasistaFelice', [])
angular.module('ngGasistaFelice', ['ui.bootstrap']);
var GasistaFelice = angular.module('ngGasistaFelice', ['ngRoute']);
var app = angular.module('ngGasistaFelice', ['ui.bootstrap']);

...具体来说,最后一个是您尝试使用ngRoute的那个,而您甚至没有将其注入其中。

更好的解决方案是定义一次,比如说:

var GasistaFelice = angular.module('ngGasistaFelice', [
    'ui.bootstrap',
    'ngRoute'
]);

然后你可以做你想做的事情:

GasistaFelice.controller(...);

或者,如果您需要在另一个文件(或范围)中使用此功能并且尚未定义GasistaFelice,则可以通过调用angular.module 而不传递所需的依赖项来获取它,像:

var app = angular.module('ngGaistaFelice');
app.controller(...);

答案 1 :(得分:1)

由于版本0.14.0角度团队为您必须使用的所有组件添加了前缀,请查看more。根据您的情况,您需要 更改:$ umbModal的模态。 更改:$ modalInstance for $ uibModalInstance。 更改:uib-modal-transclude的模态转换