2

我正在尝试使用 ui.bootstrap ( http://angular-ui.github.io/bootstrap/#/modal )为应用程序上显示更多信息(包括评论等内容)的元素启用模式窗口. 该元素正在页面上作为指令加载,我认为我遇到了嵌套范围的问题,但是它看起来好像模态窗口正在触发,但没有出现任何内容(屏幕消失)。

我的指令如下所示:

    .directive('artifactCause', function() {
        return {
            restrict: 'E',
            replace: true,
            scope: {
                thing: '=thing'
            },
            templateUrl: 'views/directives/artifact-cause.html',
            controller: function($scope, $element, $attrs, $modal) {
                console.log('clicked');
                $scope.open = function() {

                    var modalInstance = $modal.open({
                        backdrop: true,
                        keyboard: true,
                        controller: 'artifactModalCtrl',
                        templateUrl: 'views/directives/modal-artifact.html',
                        scope: $scope,
                        resolve: {
                            thing: function () {
                                return $scope.thing.cause_id;
                            }
                        }
                    });

                };
            }
        };
    });

artifactModealCtrl 控制器看起来像这样:

.controller('artifactModalCtrl', function($scope, $http, loggedStatus, thing) {
        var token = loggedStatus.token();
        $scope.close = function(result) {
            dialog.close(result);
        };

        $http.get( REQUEST_URL + '/Artifact/ArtifactDetail?token=' + token + '&artifact_id=' + thing ).
            success(function(data) {
                console.log(data);
                $scope.thing = data.response;
                return data.response;
            }).
            error(function(data) {
                console.log('Error');
                console.log(data);
            });
    })

我知道我从我的 ajax 调用收到的数据是成功的,因为我可以将它记录到控制台。任何正确方向的见解或指示将不胜感激。

4

1 回答 1

0

这很可能是找不到 HTML 模板的问题。模式正在启动并淡出屏幕,但找不到模板,因此屏幕上没有显示任何内容。

我个人在属性中引用模板的文件位置方面没有成功templateUrl,所以我所做的是将 html 模板包含在母版页中,或者将触发模式的任何页面,如下所示:

<div ng-include src="'../views/directives/modal-artifact.html'">

确保模板的路径是准确的,您应该能够通过在页面加载时通过 firebug(或类似的浏览器开发工具)查看文件的内容来确认这一点。

接下来,假设id您的模板标签的属性是"modal-artifact.html"( <script type="text/ng-template" id="modal-artifact.html">),请像这样设置您的 templateUrl:

templateUrl: 'modal-artifact.html' //this must match the id of your template
于 2013-10-07T21:37:25.190 回答