2

我有一个基于 twitter bootstrap 的表单,每个字段都有自己的配置

// controller (the template shows this in ng-repeat

$scope.fields = [{name:"f1", label:"Field 1", with_button: false},
                 {name:"f2", label:"Field 2", with_button: true}]

我正在尝试制作一个根据“field.with_button”自定义模板的“条件指令”

// Without button
<div class="controls">
    <input type="text" id="i_{{field.name}}">
</div>

// With button
<div class="controls">
    <div class="input-append">
        <input type="text" id="i_{{field.name}}">
        <span class="add-on">bt</span>
    </div>
</div>

我搜索了很多,没有找到任何解决方案,我尝试只创建一个 div 并使用编译器函数将内容放入其中,但它没有解析,如果我称之为$apply崩溃。

我怎么能做出这个指令?

错了我的最后一次尝试:

angular.module('mymodule',[]).directive('ssField', function() {
    return {
        transclude:false,
        scope: {
            field: '='
        },
        restrict: 'E',
        replace:true,
        template: '<div class="controls">{{innerContent}}</div>',
        controller: ['$scope', '$element', '$attrs', function($scope, $element, $attrs) {
            $scope.$eval('$scope.innerContent = \'<input type="text" id="input_{{field.name}}" placeholder="{{field.name}}" class="input-xlarge">\'');
        }]
    };
});

//<ss-field field="{{field}}"></ss-field>
4

3 回答 3

5

您可以使用$http$compile服务来做您想做的事。

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

这个 plnkr 应该演示需要做什么,但基本上:

  1. 用于$http根据条件加载模板。
  2. 使用 .针对当前范围编译加载的模板$compile
angular.module('mymodule',[]).directive('ssField', ['$http', '$compile', function($http, $compile) {
    return {
        transclude:false,
        scope: {
            field: '='
        },
        restrict: 'E',
        replace:true,
        template: '<div class="controls"></div>',
        link: function(scope, element, attrs) {
          var template;
          var withButtonTmpl = 'with_button.html';
          var withoutButtonTmpl = 'without_button.html';

          if (scope.field.with_button) {
            $http.get(withButtonTmpl).then(function(tmpl) {
              template = $compile(tmpl.data)(scope);
              element.append(template);
            });
          } else {
            $http.get(withoutButtonTmpl).then(function(tmpl) {
              template = $compile(tmpl.data)(scope);
              element.append(template);
            });
          }
        }
    };
}]);

您可以将指令更改为更健壮,以便 URL 不会直接嵌入指令中以实现可重用性等,但概念应该相似。

于 2013-07-04T16:55:09.643 回答
2

只是为了进一步扩展 Cuing Vo 的答案,这里与我使用的类似(不使用外部部分和额外的 $http 调用):

http://jsfiddle.net/LvUdQ/

myApp.directive('myDirective',['$compile', function($compile) {
    return {
        restrict: 'E',

        template: '<hr/>',
        link: function (scope, element, attrs, ngModelCtrl) {
            var template = {
                'templ1':'<div>Template 1</div>',
                'templ2':'<div>Template 2</div>',
                'default':'<div>Template Default</div>'
            };
            var templateObj;
            if(attrs.templateName){
                templateObj = $compile(template[attrs.templateName])(scope);
            }else{
                templateObj = $compile(template['default'])(scope);
            }
            element.append(templateObj);
        }    
    };
}]);

但是,从性能的角度来看,我不太确定它是否符合圣经。

于 2014-03-21T12:18:02.013 回答
1

在 AngularJS 中,直接操作 DOM 只能是不得已的解决方案。在这里,您可以简单地使用ngSwitch指令:

angular.module('mymodule',[]).directive('ssField', function() {
    return {
        transclude:false,
        scope: {
            field: '='
        },
        restrict: 'E',
        replace:true,
        template:
            '<div class="controls" data-ng-switch="field.with_button">' +
                '<input type="text" id="i_{{field.name}}" data-ng-switch-when="false">' +
                '<div class="input-append" data-ng-switch-default>' +
                    '<input type="text" id="i_{{field.name}}">' +
                    '<span class="add-on">bt</span>' +
                '</div>' +
            '</div>',
    };
});
于 2013-07-04T16:32:38.397 回答