TypeError:无法读取属性' open'未定义的模态

时间:2016-02-22 03:30:09

标签: javascript html angularjs angularjs-directive

我正在尝试使用某个项目的信息显示模态。但是,当我调用它所读取的函数时:

  

TypeError:无法读取属性'打开'在Scope。$ scope.openModal

中未定义

我希望有人能告诉我原因,这是相关代码:

模板

<div ng-controller="View1Ctrl">
    <script type="text/ng-template" id="myModalContent.html">
        <div class="modal-header">
            <h3 class="modal-title">Item Details</h3>
        </div>
        <div class="modal-body">
            <ul ng-repeat="i in items">
                <li>Type: <span ng-bind="i.type"></span></li>
                <li>Description: <span ng-bind="i.description"></span></li>
                <li>Date: <span ng-bind="i.createDate"></span></li>
                <li>Priority: <span ng-bind="i.priority"></span></li>
                <li>Finished: <span ng-bind="i.isDone"></span></li>
            </ul>
        </div>
        <div class="modal-footer">
        <button class="btn btn-primary" ng-click="$close()">OK</button>
        </div>
    </script>
</div>

App.Js

'use strict';

// Declare app level module which depends on views, and components
angular.module('myApp', [
  //'ngRoute',
  'ui.router',
  'ui.bootstrap',
  'myApp.view1',
  'myApp.view2',
  'myApp.version',
  'myApp.items'
])
.config(function($stateProvider, $urlRouterProvider) {

    $urlRouterProvider.otherwise('/view1');

    $stateProvider  
    .state('view1', {
        url: '/view1',
        templateUrl: 'view1/view1.html',
        controller: 'View1Ctrl'
    })
    .state('view2', {
        url: '/view2',
        templateUrl: 'view2/view2.html',
        controller: 'View2Ctrl'
    });       
});

控制器

'use strict';

angular.module('myApp.view1', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
    $routeProvider.when('/view1', {
        templateUrl: 'view1/view1.html',
        controller: 'View1Ctrl'
    });
}])
.controller('View1Ctrl', ['$scope','itemsService',function($scope,itemsService, $uiModal) {

    $scope.$on('itemSwitch.moreInfo', function(event, obj){
        $scope.openModal(obj);
    });

    $scope.openModal = function (obj) {

        var modalInstance = $uiModal.open({
            animation: $scope.animationsEnabled,
            templateUrl: 'templates/modalTemplate.html',
            controller: 'View1Ctrl',
            resolve: {
                items: function () {
                    return obj;
                }
            }
        });
    }
}]); //END

有人能指出我正确的方向来解决这个问题吗?

由于

错误消失了,但现在除了灰屏外,它没有显示任何内容,控制台显示模态html正在加载但未正确显示。

enter image description here

1 个答案:

答案 0 :(得分:2)

您的注射签名不正确。你遗失了$uiModal。请注意以下内容......

.controller('View1Ctrl', ['$scope', 'itemsService', 
    function($scope, itemsService, $uiModal) {

=&GT;

.controller('View1Ctrl', ['$scope', 'itemsService', '$uiModal', 
    function($scope, itemsService, $uiModal) {

我不完全确定您打算注入的服务的确切名称。我想这是基于名为$uiModal变量,但是,我注意到docs状态为$uibModal。你需要验证这一点。

为了回应您最新发现的新问题,我最好的观察是templateUrl: ''<script id="">必须匹配。请尝试将<script>标记更改为以下内容...

<script type="text/ng-template" id="templates/modalTemplate.html">
    <!-- <div> -->

我在玩弄文档中找到的default plunker时偶然发现了这一点。如果两个值不相同则存在错误。