4
<button command="saveCmd">{{saveText}}</button>

命令指令没有任何模板——它是行为指令。但我需要使用transclude: true来显示{{saveText}}.

我可以创建虚拟模板,template: "<div ng-transclude></div>"但我不确定按钮内的 div 是否对所有浏览器都是有效的 html。

我也可以使用属性来定义标题,例如<button title="saveText"...但我的问题是关于没有模板的 ng-transclude。可能吗?

提前致谢。

更新:

指令内的新“隔离”范围scope: {}是默认情况下不保留 {{saveText}} 的原因。

4

1 回答 1

1

您可以在没有控制器且没有隔离范围的情况下创建指令。在链接功能中,我有时会做这样的事情:

.directive('toggle', function ($parse) {
  return {
    /* We can't use an isolated scope in this directive, because it happens 
     * all the time that you need to put a toggle on an element that uses the scope:
     * <span toggle="boolVar" ng-class="{active: boolVar}">{{someVar}}</span>
     *
     * Transclusion can be an option to make the {{someVar}} work, 
     * but the ng-class will use the isolated scope for this directive
     * (if we'd use the isolated scope, which we don't)
     */
    link: function (scope, $element, attrs) {
      // use a $parse getter/setter, because toggle can contain a
      // complicated expression
      var getter = $parse(attrs.toggle);
      var setter = getter.assign;

      $element.on('click', function () {
        scope.$apply(function () {
          setter(scope, !getter(scope));
        });
      });
    }
  };
});

也许这个 $parse 技巧有助于您的命令设置......

于 2013-10-23T09:11:32.073 回答