我可以在 Angular 服务中直接在 templateUrl 上而不是在原始 HTML 或原始 angular.element 上使用 $compile 吗? [英] Can I use $compile in an Angular service directly on a templateUrl instead of on raw HTML or a raw angular.element?

查看:22
本文介绍了我可以在 Angular 服务中直接在 templateUrl 上而不是在原始 HTML 或原始 angular.element 上使用 $compile 吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

鉴于以下旨在创建对话"元素(即模态)的服务:

Given the following service that is meant to create a "dialog" element (i.e. a modal):

app.service('dialog', ['$document', '$compile', '$rootScope',
    function($document, $compile, $rootScope) {

        var body = $document.find('body');
        var scope = $rootScope.$new();

        this.createDialog = function() {
            var dialogElem = angular.element('<div ng-include="\'/dialog.html\'"></div>');
            $compile(dialogElem)(scope);
            body.append(dialogElem);
        };

    }
]);

可以像这样在控制器中使用:

which can be utilized in a controller like so:

$scope.someFunction = function() {
    dialog.createDialog();
};

有没有办法可以使用 $compile 或其他任何东西来使我的服务中没有 HTML?我真的更喜欢只调用一个指令,以便运行 createDialog() 立即将一个指令注入我的 DOM,因此该指令负责将新控制器和模板链接在一起.如果我以错误的方式解决这个问题,我完全愿意接受建设性的想法.

Is there a way that I can use $compile or anything else to not have HTML in my service? I'd really prefer to just invoke a directive, so that running createDialog() immediately injects a directive into my DOM and thus the directive is responsible for linking a new controller and template together. If I'm going about this the wrong way I'm totally open to constructive ideas.

推荐答案

当然可以!,给你:

app.factory('modalService', function ($document, $compile, $rootScope, $templateCache, $http) {

    var body   = $document.find('body'),
        modals = [];

    var service = {
        show: function (template, data, modal) {

            // The template's url
            var url = 'template/modal/' + template + '.html';

            // A new scope for the modal using the passed data
            var scope = $rootScope.$new();
            angular.extend(scope, data);

            // Wrapping the template with some extra markup
            modal = modal || angular.element('<div class="modal"/>');

            // The modal api
            var api = {
                close: function () {

                    modal.remove();
                    scope.$destroy();
                    modals.splice(modals.indexOf(api), 1);

                },
                replace: function (template, data) {

                    return angular.extend(api, service.show(template, data, modal));
                }
            };

            // Adding the modal to the body
            body.append(modal);

            // A close method
            scope.close = api.close;

            // Caching the template for future calls
            $http.get(url, {cache: $templateCache})
                .then(function (response) {

                    // Wrapping the template with some extra markup
                    modal.html('<div class="win">' + response.data + '</div>');

                    // The important part
                    $compile(modal)(scope);
                });

            modals.push(modal);

            return api;
        },
        showOrReplaceLast: function (template, data) {

            return service.show(template, data, modals.length > 0 ? modals[modals.length - 1] : null);
        }
    };

    return service;
});

一些注意事项:

  • 您需要在 DOM 中的某处插入模式,这就是注入 $document 的原因.
  • 是的,您可以从这里去掉模态标记.
  • 记得为对话框创建新的作用域并销毁它们 ($rootScope.$new).
  • 这是一个 WIP,我希望它足够清楚.

这篇关于我可以在 Angular 服务中直接在 templateUrl 上而不是在原始 HTML 或原始 angular.element 上使用 $compile 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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