10

我创建了一个非常简单的指令,它显示一个键/值对。如果嵌入的内容为空(零长度或只是空格),我希望能够自动隐藏元素。

我无法弄清楚如何访问从指令中嵌入的内容。

app.directive('pair', function($compile) {
  return {
    replace: true,
    restrict: 'E',
    scope: {
      label: '@'
    },
    transclude: true,
    template: "<div><span>{{label}}</span><span ng-transclude></span></div>"
  }
});

例如,我希望显示以下元素。

<pair label="My Label">Hi there</pair>

但是接下来的两个元素应该被隐藏,因为它们不包含任何文本内容。

<pair label="My Label"></pair>
<pair label="My Label"><i></i></pair>

我是 Angular 的新手,所以可能有一种开箱即用的好方法来处理这类事情。任何帮助表示赞赏。

4

6 回答 6

9

这是一种ng-show在模板上使用并在compile transcludeFn检查嵌入的 html 是否具有文本长度的方法。

如果没有将文本长度ng-show设置为隐藏

app.directive('pair', function($timeout) {
  return {
    replace: true,
    restrict: 'E',
    scope: {
      label: '@'
    },
    transclude: true,
    template: "<div ng-show='1'><span>{{label}} </span><span ng-transclude></span></div>",
    compile: function(elem, attrs, transcludeFn) {
            transcludeFn(elem, function(clone) { 
              /* clone is element containing html that will be transcludded*/
               var show=clone.text().length?'1':'0'
                attrs.ngShow=show;
            });
        }
  }
});

Plunker 演示

于 2013-04-02T17:20:19.483 回答
6

也许有点晚了,但您也可以考虑使用 CSS 伪类 :empty。所以,这会工作(IE9+)

.trancluded-item:empty {
  display: none;
}

该元素仍将在 dom 中注册,但将为空且不可见。

于 2017-05-22T01:41:56.907 回答
1

之前提供的答案很有帮助,但并没有完美地解决我的情况,因此我通过创建单独的指令提出了不同的解决方案。

创建一个基于属性的指令(即restrict: 'A'),它只检查元素的所有子节点上是否有任何文本。

function hideEmpty() {
    return {
        restrict: 'A',
        link: function (scope, element, attr) {
            let hasText = false;

            // Only checks 1 level deep; can be optimized
            element.children().forEach((child) => {
                hasText = hasText || !!child.text().trim().length;
            });

            if (!hasText) {
                element.attr('style', 'display: none;');
            }
        }
    };
 }

angular
    .module('directives.hideEmpty', [])
    .directive('hideEmpty', hideEmpty);

如果您只想检查主要元素:

link: function (scope, element, attr) {
    if (!element.text().trim().length) {
        element.attr('style', 'display: none;');
    }
}

为了解决我的问题,我只需要检查是否有任何子节点:

link: function (scope, element, attr) {
    if (!element.children().length) {
        element.attr('style', 'display: none;');
    }
}

YMMV

于 2015-12-03T18:43:28.217 回答
1

如果你不想每次都使用 ng-show,你可以创建一个指令来自动完成:

.directive('hideEmpty', ['$timeout', function($timeout) {

    return {
        restrict: 'A',

        link: {
            post: function (scope, elem, attrs) {
                $timeout(function() {
                    if (!elem.html().trim().length) {
                        elem.hide();
                    }
                });
            }
        }
    };

}]);

然后你可以将它应用到任何元素上。在您的情况下,它将是:

<span hide-empty>{{label}}</span>
于 2016-06-01T11:19:39.457 回答
0

我对 transclude 不是很熟悉,所以不确定它是否有帮助。

但是在指令代码中检查空内容的一种方法是使用 iElement.text() 或 iElement.context 对象,然后将其隐藏。

于 2013-04-02T16:04:32.063 回答
0

我这样做了,使用controllerAs。

/* 内部指令 */

         controllerAs: "my",
controller: function ($scope, $element, $attrs, $transclude) {
//whatever controller does
},
         compile: function(elem, attrs, transcludeFn) {
                    var self = this;
                    transcludeFn(elem, function(clone) {
                        /* clone is element containing html that will be transcluded*/
                        var showTransclude = clone.text().trim().length ? true : false;
                        /* I set a property on my controller's prototype indicating whether or not to show the div that is ng-transclude in my template */
                        self.controller.prototype.showTransclude = showTransclude;
                    });
                }

/* 内部模板 */

<div ng-if="my.showTransclude" ng-transclude class="tilegroup-header-trans"></div>
于 2014-10-08T20:57:56.503 回答