部分视图无法在角度中正确编译

时间:2013-07-03 15:25:43

标签: javascript angularjs partial-views directive

// Code goes here
var mymodule = angular.module('myapp', []);
mymodule.controller('mycontroller', function ($scope) {

});

mymodule.directive('pvTempUrl',
    function ($http, $compile, $log, $templateCache) {
        $log.info("Directive Called");
        return {
            restrict: 'A',
            replace: true,
            compile: function (telement, tattr, transclude) {
                var templateloader = $http.get(tattr.pvTempUrl, { cache: $templateCache }).
                    success(function (data) {
                        $log.info("Success-" + data);
                        telement.html(data);
                    }).
                    error(function (data, status) {
                        $log.warn("Error occured - " + data + " status-" + status);
                    });
                return function (scope, element, attr) {
                    templateloader.then(function () {
                        var compiledHtm = ($compile(telement.html())(scope)).html();
                        $log.info("compiled html-" + compiledHtm);
                        element.html(compiledHtm);
                    });
                }; 
            }
        };
    });

我有一个部分页面试图编译页面正在工作只是显示模板。

Plunkr可以在这里使用

http://plnkr.co/edit/U85rmXhuQGKx5pkzUu99?p=preview

问题发现我绑定了html而不是编译对象解决了下面的问题

// Code goes here
var mymodule = angular.module('myapp', []);
mymodule.controller('mycontroller', function ($scope) {

});

mymodule.directive('pvTempUrl',
    function ($http, $compile, $log, $templateCache) {
        $log.info("Directive Called");
        return {
            restrict: 'A',
            replace: true,
            compile: function (telement, tattr, transclude) {
                var templateloader = $http.get(tattr.pvTempUrl, { cache: $templateCache }).
                    success(function (data) {
                        $log.info("Success-" + data);
                        telement.html(data);
                    }).
                    error(function (data, status) {
                        $log.warn("Error occured - " + data + " status-" + status);
                    });
                return function (scope, element, attr) {
                    templateloader.then(function () {
                        var compiledHtm = ($compile(telement.html())(scope));
                        $log.info("compiled html-" + compiledHtm);
                        //element.html(compiledHtm);
                        element.replaceWith(compiledHtm);
                         $log.info(element.html());
                    });
                }; 
            }
        };
    });

1 个答案:

答案 0 :(得分:0)

我之前没有看到有人试图以这种方式加载模板。加载模板的正确Angular方法如下:

  • 使用ng-view加载预定义的模板文件。
  • 构建自己的自定义指令。

我觉得你正在尝试做第二种方法。以下代码示例是如何执行此操作的示例。

angular.module("myapp")
.directive('buttonsRadio', function() {
return {
    restrict: 'E',
    scope: false,
    controller: function($scope){
        //Any logic required for directive to work.    
    },
    templateUrl: 'template.html'
};
})

在您的template.html文件中,您将拥有要加载的模板。

有关如何构建自己的自定义指令元素的更多详细信息和示例,请参阅Angular文档中的Writing Directives (long version)部分。

更新:已编辑以显示templateUrl的示例。