Angular.js指令动态模板URL


169

我在routeProvider模板中有一个需要模板的自定义标签directive。该version属性将由范围填充,然后需要正确的模板。

<hymn ver="before-{{ week }}-{{ day }}"></hymn>

根据赞美诗的星期和日期,它有多种版本。我期望使用该指令来填充正确的.html部分。不会读取变量templateUrl

emanuel.directive('hymn', function() {
    var contentUrl;
    return {
        restrict: 'E',
        link: function(scope, element, attrs) {
            // concatenating the directory to the ver attr to select the correct excerpt for the day
            contentUrl = 'content/excerpts/hymn-' + attrs.ver + '.html';
        },
        // passing in contentUrl variable
        templateUrl: contentUrl
    }
});

有在摘录目录多个文件被标记before-1-monday.htmlbefore-2-tuesday.html...



如果您使用的是AngularJS 1.5+,请检查以下优雅的解决方案: stackoverflow.com/a/41743424/1274852
hkong

Answers:


184

您可以使用ng-include指令。

尝试这样的事情:

emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           scope.getContentUrl = function() {
                return 'content/excerpts/hymn-' + attrs.ver + '.html';
           }
       },
       template: '<div ng-include="getContentUrl()"></div>'
   }
});

UPD。用于观看ver属性

emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           scope.contentUrl = 'content/excerpts/hymn-' + attrs.ver + '.html';
           attrs.$observe("ver",function(v){
               scope.contentUrl = 'content/excerpts/hymn-' + v + '.html';
           });
       },
       template: '<div ng-include="contentUrl"></div>'
   }
});

1
它很好的解决方案。有没有办法写它可以处理多个实例?当前,一旦设置了作用域,它将无法识别新的attrs.ver。
Alen Giliana 2014年

1
您的意思是,您要监视ver属性更改和重新呈现指令吗?
pgregory,2014年

1
谢谢您的澄清。如果您以upd。中发布的方式声明指令,则使用多个时的用例<hymn ...>应该可以正常工作。或者也许是时候在jsfilddle构建原型了?
pgregory 2014年

1
您好,@ AlenGiliana,我ve take a look at your site, and changed [JSFiddle](http://jsfiddle.net/JQgG5/6/). All you need is 在指令声明- 范围隔离中作用域:{} 。我也强烈建议您使用最新版本的angular。<script type="text/ng-template" id="...">-是html页面的本地替代者
pgregory,2014年

1
您是要使用Angular 1.2.1吗?谢谢您的帮助,这种学习曲线很疯狂:)
Alen Giliana 2014年

313
emanuel.directive('hymn', function() {
   return {
       restrict: 'E',
       link: function(scope, element, attrs) {
           // some ode
       },
       templateUrl: function(elem,attrs) {
           return attrs.templateUrl || 'some/path/default.html'
       }
   }
});

因此,您可以通过标记提供templateUrl

<hymn template-url="contentUrl"><hymn>

现在,您只需注意属性contentUrl会使用动态生成的路径进行填充。


4
很好,但是...我可以从templateUrl函数访问范围属性吗?templateUrl取决于范围值,但我无法访问它:(
josec89 2014年

1
很高兴您找到解决方案。我不建议使用依赖于其父级的指令,除非它是在指令的require部分设置的控制器。
Andrej Kaurin 2014年

11
最后!正是我想要的!我没有意识到我可以从templateUrl函数访问elem和attrs。谢谢!
coryvb123 2014年

7
templateUrl每个指令都会被调用一次,不会在每个指令实例初始化时被调用,请注意!!!虽然可能是角度上的错误...
2015年4

2
我还没有检查过,但是根据我的最新发现,可能值得一提的是once per $compile phase。换句话说,如果您ng-repeat与指令一起使用,并且想要基于特定的ng-repeat项目上下文设置单个模板,则它将无法正常工作,因为$compile阶段ng-repeat会在实际发生之前遍历您的指令一次。所以在这个意义上它被称为一次...
Lu4 2015年

6

感谢@pgregory,我可以使用此指令进行内联编辑来解决我的问题

.directive("superEdit", function($compile){
    return{
        link: function(scope, element, attrs){
            var colName = attrs["superEdit"];
            alert(colName);

            scope.getContentUrl = function() {
                if (colName == 'Something') {
                    return 'app/correction/templates/lov-edit.html';
                }else {
                    return 'app/correction/templates/simple-edit.html';
                }
            }

            var template = '<div ng-include="getContentUrl()"></div>';

            var linkFn = $compile(template);
            var content = linkFn(scope);
            element.append(content);
        }
    }
})

5

您在这里不需要自定义指令。只需使用ng-include src属性即可。它已编译,因此您可以将代码放入其中。有关问题,请参阅带有解决方案的插件。

<div ng-repeat="week in [1,2]">
  <div ng-repeat="day in ['monday', 'tuesday']">
    <ng-include src="'content/before-'+ week + '-' + day + '.html'"></ng-include>
  </div>
</div>

2

我遇到了同样的问题,但解决的方式与其他方式略有不同。我正在使用角度1.4.4。

就我而言,我有一个用于创建CSS Bootstrap面板的shell模板:

<div class="class-container panel panel-info">
    <div class="panel-heading">
        <h3 class="panel-title">{{title}} </h3>
    </div>
    <div class="panel-body">
        <sp-panel-body panelbodytpl="{{panelbodytpl}}"></sp-panel-body>
    </div>
</div>

我想根据路线包括面板主体模板。

    angular.module('MyApp')
    .directive('spPanelBody', ['$compile', function($compile){
        return {
            restrict        : 'E',
            scope : true,
            link: function (scope, element, attrs) {
                scope.data = angular.fromJson(scope.data);
                element.append($compile('<ng-include src="\'' + scope.panelbodytpl + '\'"></ng-include>')(scope));
            }
        }
    }]);

然后,当路由为时,我将包含以下模板#/students

<div class="students-wrapper">
    <div ng-controller="StudentsIndexController as studentCtrl" class="row">
        <div ng-repeat="student in studentCtrl.students" class="col-sm-6 col-md-4 col-lg-3">
            <sp-panel 
            title="{{student.firstName}} {{student.middleName}} {{student.lastName}}"
            panelbodytpl="{{'/student/panel-body.html'}}"
            data="{{student}}"
            ></sp-panel>
        </div>
    </div>
</div>

panel-body.html模板如下:

Date of Birth: {{data.dob * 1000 | date : 'dd MMM yyyy'}}

如果有人想去的样本数据:

var student = {
    'id'            : 1,
    'firstName'     : 'John',
    'middleName'    : '',
    'lastName'      : 'Smith',
    'dob'           : 1130799600,
    'current-class' : 5
}

0

我有一个例子

<!DOCTYPE html>
<html ng-app="app">

  <head>
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  </head>

  <body>
    <div class="container-fluid body-content" ng-controller="formView">
        <div class="row">
            <div class="col-md-12">
                <h4>Register Form</h4>
                <form class="form-horizontal" ng-submit="" name="f" novalidate>
                    <div ng-repeat="item in elements" class="form-group">
                        <label>{{item.Label}}</label>
                        <element type="{{item.Type}}" model="item"></element>
                    </div>
                    <input ng-show="f.$valid" type="submit" id="submit" value="Submit" class="" />
                </form>
            </div>
        </div>
    </div>
    <script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.2/angular.min.js"></script>
    <script src="app.js"></script>
  </body>

</html>

angular.module('app', [])
    .controller('formView', function ($scope) {
        $scope.elements = [{
            "Id":1,
            "Type":"textbox",
            "FormId":24,
            "Label":"Name",
            "PlaceHolder":"Place Holder Text",
            "Max":20,
            "Required":false,
            "Options":null,
            "SelectedOption":null
          },
          {
            "Id":2,
            "Type":"textarea",
            "FormId":24,
            "Label":"AD2",
            "PlaceHolder":"Place Holder Text",
            "Max":20,
            "Required":true,
            "Options":null,
            "SelectedOption":null
        }];
    })
    .directive('element', function () {
        return {
            restrict: 'E',
            link: function (scope, element, attrs) {
                scope.contentUrl = attrs.type + '.html';
                attrs.$observe("ver", function (v) {
                    scope.contentUrl = v + '.html';
                });
            },
            template: '<div ng-include="contentUrl"></div>'
        }
    })
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.