29

如何使用动态模板创建指令?

'use strict';

app.directive('ngFormField', function($compile) {
return {
    transclude: true,
    scope: {
        label: '@'
    },
    template: '<label for="user_email">{{label}}</label>',
    // append
    replace: true,
    // attribute restriction
    restrict: 'E',
    // linking method
    link: function($scope, element, attrs) {
        switch (attrs['type']) {
            case "text":
                // append input field to "template"
            case "select":
                // append select dropdown to "template"
        }
    }
  }
});
<ng-form-field label="First Name" type="text"></ng-form-field>

这就是我现在所拥有的,它可以正确显示标签。但是,我不确定如何在模板中附加额外的 HTML。或者将 2 个模板合并为 1 个。

4

7 回答 7

32

我已经使用 $templateCache 来完成类似的事情。我将几个 ng 模板放在一个 html 文件中,我使用指令的 templateUrl 引用该文件。这确保 html 可用于模板缓存。然后我可以简单地通过 id 选择来获得我想要的 ng-template。

模板.html:

<script type="text/ng-template" id=“foo”&gt;
foo
</script>

<script type="text/ng-template" id=“bar”&gt;
bar
</script>

指示:

myapp.directive(‘foobardirective’, ['$compile', '$templateCache', function ($compile, $templateCache) {

    var getTemplate = function(data) {
        // use data to determine which template to use
        var templateid = 'foo';
        var template = $templateCache.get(templateid);
        return template;
    }

    return {
        templateUrl: 'views/partials/template.html',
        scope: {data: '='},
        restrict: 'E',
        link: function(scope, element) {
            var template = getTemplate(scope.data);

            element.html(template);
            $compile(element.contents())(scope);
        }
    };
}]);
于 2014-01-15T17:24:51.117 回答
17

有类似的需求。$compile做这项工作。(不完全确定这是否是“THE”方式,仍然通过角度工作)

http://jsbin.com/ebuhuv/7/edit - 我的探索测试。

需要注意的一件事(根据我的示例),我的一个要求是一旦您单击保存,模板将根据type属性进行更改,并且模板非常不同。因此,尽管您获得了数据绑定,但如果需要其中的新模板,则必须重新编译。

于 2013-02-13T20:42:47.797 回答
8

您应该使用“ ng-switch ”指令将您的开关移动到模板中:

module.directive('testForm', function() {
    return {
        restrict: 'E',
        controllerAs: 'form',
        controller: function ($scope) {
            console.log("Form controller initialization");
            var self = this;
            this.fields = {};
            this.addField = function(field) {
                console.log("New field: ", field);
                self.fields[field.name] = field;
            };
        }
    }
});

module.directive('formField', function () {
    return {
        require: "^testForm",
        template:
            '<div ng-switch="field.fieldType">' +
            '    <span>{{title}}:</span>' +
            '    <input' +
            '        ng-switch-when="text"' +
            '        name="{{field.name}}"' +
            '        type="text"' +
            '        ng-model="field.value"' +
            '    />' +
            '    <select' +
            '        ng-switch-when="select"' +
            '        name="{{field.name}}"' +
            '        ng-model="field.value"' +
            '        ng-options="option for option in options">' +
            '        <option value=""></option>' +
            '    </select>' +
            '</div>',
        restrict: 'E',
        replace: true,
        scope: {
            fieldType: "@",
            title: "@",
            name: "@",
            value: "@",
            options: "=",
        },
        link: function($scope, $element, $attrs, form) {
            $scope.field = $scope;
            form.addField($scope);
        }
    };
});

它可以像这样使用:

<test-form>
    <div>
        User '{{!form.fields.email.value}}' will be a {{!form.fields.role.value}}
    </div>
    <form-field title="Email" name="email" field-type="text" value="me@example.com"></form-field>
    <form-field title="Role" name="role" field-type="select" options="['Cook', 'Eater']"></form-field>
    <form-field title="Sex" name="sex" field-type="select" options="['Awesome', 'So-so', 'awful']"></form-field>
</test-form>
于 2014-07-31T20:51:50.867 回答
4

一种方法是在指令中使用模板函数:

...
template: function(tElem, tAttrs){
    return '<div ng-include="' + tAttrs.template + '" />';
}
...
于 2016-12-19T09:18:58.970 回答
3

如果你想使用带有动态模板的 AngularJs 指令,你可以使用那些答案,但这里有更专业合法的语法。您不仅可以将 templateUrl 用于单个值。您可以将其用作函数,它以 url 的形式返回值。该函数有一些参数,您可以使用它们。

http://www.w3docs.com/snippets/angularjs/dynamically-change-template-url-in-angularjs-directives.html

于 2015-07-22T16:21:34.213 回答
1

我设法处理了这个问题。以下是链接:

https://github.com/nakosung/ng-dynamic-template-example

具体文件为:

https://github.com/nakosung/ng-dynamic-template-example/blob/master/src/main.coffee

dynamicTemplate指令宿主动态模板,它在范围内传递,宿主元素的行为类似于其他原生角度元素。

scope.template = '< div ng-controller="SomeUberCtrl">rocks< /div>'
于 2014-02-26T12:57:12.197 回答
0

我一直处于同样的情况,我的完整解决方案已发布在这里

基本上我以这种方式在指令中加载模板

var tpl = '' + 
    <div ng-if="maxLength" 
        ng-include="\'length.tpl.html\'">
    </div>' +
    '<div ng-if="required" 
        ng-include="\'required.tpl.html\'">
    </div>';

然后根据 的值,maxLengthrequired可以动态加载 2 个模板之一,如果需要,一次只显示一个。

我希望它有帮助。

于 2015-11-18T04:21:28.877 回答