1

我对为什么会收到此错误感到有些困惑。我有一种预感,它与 templateURL 相关,我尝试了一些方法,但无济于事。我已经阅读了文档并搜索了一堆 SO 帖子,但没有一个有太大帮助。我想使用 Express/Node 来提供页面,我有一种感觉,这就是我的 templateURL 在 app.js 中不起作用的原因。

这是我的 index.html 与我的控制器和我的模板。

<body ng-app="app" ng-controller="AppCtrl">
<script type="text/ng-template" id="pageContent.html">
    <div class="container">
        <div class="modal-header">
            <h3 class="modal-title">I am a modal!</h3>
        </div>
        <div class="modal-body">
            <h1>HELLO</h1>
        </div>
        <div class="modal-footer">
            <button class="btn btn-primary" type="button" ng-click="cancel()">OK</button>
            <button class="btn btn-warning" type="button" ng-click="cancel()">Cancel</button>
        </div>
    </div>
</script>
<div ng-click="open()"> <!-- this is what makes the modal -->
<!-- rest of html below -->

这就是 app.js 中的内容

var app = angular.module("app", ["ngAnimate", 'ui.bootstrap']);

app.controller("AppCtrl", function($scope, $timeout, $uibModal, $http) {

    $scope.open = function (person) {
        $scope.selectedPerson = "passed in person";
        console.log($scope.selectedPerson);


        var modalInstance = $uibModal.open({
            templateUrl: 'pageContent.html',
            controller: 'ModalInstanceCtrl',
            resolve: {
                selectedPerson: function() {
                    return $scope.selectedPerson;
                }
            }
        });

    };
});

app.controller('ModalInstanceCtrl', function ($scope, $uibModalInstance, selectedPerson) {

    $scope.selectedPerson = selectedPerson;


    $scope.cancel = function () {
        $uibModalInstance.dismiss('cancel');
    };
});

我也尝试将 templateURL 替换为,template: "<p> hello world </p>"但这也会产生相同的错误。

这是错误跟踪: 在此处输入图像描述

4

1 回答 1

3

使用angular.js而不是angular.min.js获得更清晰的错误消息。

要解决此特定问题,您需要使用ui-bootstrap-tpls.min.js(或ui-bootstrap-tpls.js)而不是ui-bootstrap.min.jsui-bootstrap.js)。

在那之后,您可能还有其他一些问题,但也许那是一个不同的 SO 问题?:-)

于 2015-11-20T20:35:37.640 回答