Angular bootstrap 模式导致strict-di错误,不知道为什么 [英] Angular bootstrap modal causing strict-di error, not sure why

查看:24
本文介绍了Angular bootstrap 模式导致strict-di错误,不知道为什么的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

奇怪的问题,使用 Angular UI 引导模式我对 Angular 1.3 beta 16 完全没有问题,但是如果我启用 ng-strict-di 模式,我会收到以下错误:

Weird problem, using Angular UI bootstrap modal I have no issues at all with Angular 1.3 beta 16, however if I enable ng-strict-di mode I get the following error:

Error: [$injector:strictdi] function($scope, $modalInstance) is not using explicit annotation and cannot be invoked in strict mode
http://errors.angularjs.org/1.3.0-beta.16/$injector/strictdi?p0=function(%24scope%2C%20xmodalInstance)
    at http://localhost:3000/vendor/angular.js:78:12
    at annotate (http://localhost:3000/vendor/angular.js:3353:17)
    at invoke (http://localhost:3000/vendor/angular.js:4037:21)
    at Object.instantiate (http://localhost:3000/vendor/angular.js:4070:23)
    at http://localhost:3000/vendor/angular.js:7451:28
    at http://localhost:3000/vendor/ui-bootstrap-tpls-0.11.0.min.js:8:28715
    at wrappedCallback (http://localhost:3000/vendor/angular.js:11616:81)
    at http://localhost:3000/vendor/angular.js:11702:26
    at Scope.$eval (http://localhost:3000/vendor/angular.js:12797:28)
    at Scope.$digest (http://localhost:3000/vendor/angular.js:12609:31) 

奇怪的是这不在指令或服务中,它只是我的一个页面背后的脚本.我知道我正在那里制作一个控制器,但是……我现在还不确定.这是产生错误的代码:

The weird thing is this is not in a directive or service, it's just the script behind one of my pages. I know I'm making a controller there but...well I'm not sure at this point. Here is the code that generated the error:

            //=================
            //MODAL PROMPTER
            //=================

            var Prompt = function(title, prompt) {
                var modalInstance = $modal.open({
                    template: '<div class="modal-header"><h3 class="modal-title">' + title + '</h3></div><div class="modal-body"><p>' + prompt + '</p></div><div class="modal-footer"><button class="btn btn-primary" ng-click="ok()">OK</button><button class="btn btn-warning" ng-click="cancel()">Cancel</button></div>',
                    controller: ModalInstanceCtrl,
                    size: 'sm'

                });

                modalInstance.result.then(function(result) {
                    console.log('Modal OK');
                }, function() {
                    console.log('Modal dismissed');
                });
            };

            var ModalInstanceCtrl = function($scope, $modalInstance) {
                $scope.ok = function() {
                    $modalInstance.close(true);
                };
                $scope.cancel = function() {
                    $modalInstance.dismiss(false);
                };
            };

            //end of modal
            //==================

            //call it immediately to see the error     
            Prompt('myTitle', 'myMessage');

我不确定我是如何或为什么会收到错误消息.如果我关闭strict-di,它就可以完美运行.有什么想法吗?

I'm not sure how or why I'm getting the error. If I turn off strict-di it works perfectly. Any ideas?

推荐答案

你需要手动通告控制器的依赖项,因为你有 ng-strict-di 已启用.

You need to manually advertise your dependencies for the controller since you have ng-strict-di enabled.

function ModalInstanceCtrl ($scope, $modalInstance) { //or var ModalInstanceCtrl = function(...

  $scope.ok = function () {
    $modalInstance.close(true);
  };

  $scope.cancel = function () {
    $modalInstance.dismiss(false);
  };

};

ModalInstanceCtrl.$inject = ['$scope', '$modalInstance'];

这篇关于Angular bootstrap 模式导致strict-di错误,不知道为什么的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆