Angular标签中连字符的含义

时间:2015-07-11 18:17:53

标签: angularjs

我在Plunker找到了一些我不明白的代码。它是一个文字云,其中云被添加到页面中:

<tang-cloud words="words" on-click="test(word)" width="500" height="500"></tang-cloud>

这是一些Angular的选择。我不明白的是,我在其余代码中找不到&#34; tang-cloud&#34; 的引用。各种&#34; tangcloud&#34; ,但没有连字符。

我是Angular的新手,我偶然发现了另一个似乎发生这种情况的案例,但我见过的所有教程案例都会使用&#34; tangcloud& #34; 即可。如果我删除了连字符,它就会停止工作,所以我必须错过一些简单的东西。

谢谢

2 个答案:

答案 0 :(得分:2)

这是一个指令。由于HTML不区分大小写,因此angular将tangCloud指令转换为tang-cloud以便HTML可读。

tangCloud.js中的tangCloud指令是您可以找到代码的地方。

编辑:只是为了跟进,你会看到restrict: 'E'的位?这告诉angular你可以将指令用作自定义元素。当您制定指令camelcase时,例如tangCloud,angular会自动将其转换为tang-cloud

.directive('tangCloud', ['$interpolate', '$compile', '$timeout', function ($interpolate, $compile, $timeout) {

    var directive = {
        restrict: 'E',
        scope: {
            width: '=',
            height: '=',
            words: '=',
            onClick: '&',
            spin: '='
        },

        template: function (tElement, tAttrs) {
            var isClickable = angular.isDefined(tAttrs.onClick);

            var clickAttr = isClickable ? 'ng-click="onClick({word : entry.word, id : entry.id})"' : '';

            return "<div class='tangcloud'>" +
                "<span ng-repeat='entry in words'" + clickAttr + ">{{entry.word}}</span>" +
                "</div>";
        },

        compile: function (elem) {
            elem.children().children()
                .addClass('tangcloud-item-' + $interpolate.startSymbol() + 'entry.size' + $interpolate.endSymbol())
                .addClass('tangcloud-item-hidden');

            return function (scope, elem) {
                var centerX = scope.width / 2;
                var centerY = scope.height / 2;
                var outOfBoundsCount = 0;
                var takenSpots = [];

                if (scope.words) {
                    scope.words = shuffleWords(scope.words);
                    determineWordPositions();
                }

                function shuffleWords(array) {
                    for (var i = array.length - 1; i > 0; i--) {
                        var j = Math.floor(Math.random() * (i + 1));
                        var temp = array[i];
                        array[i] = array[j];
                        array[j] = temp;
                    }
                    return array;
                }

                function determineWordPositions() {
                    $timeout(function () {
                        var trendSpans = elem.children().eq(0).children();
                        var length = trendSpans.length;

                        for (var i = 0; i < length; i++) {
                            setWordSpanPosition(trendSpans.eq(i));
                        }
                    });
                }

                function setWordSpanPosition(span) {
                    var height = parseInt(window.getComputedStyle(span[0]).lineHeight, 10);
                    var width = span[0].offsetWidth;
                    var spot = setupDefaultSpot(width, height);
                    var angleMultiplier = 0;

                    while (spotNotUsable(spot) && outOfBoundsCount < 50) {
                        spot = moveSpotOnSpiral(spot, angleMultiplier);
                        angleMultiplier += 1;
                    }

                    if (outOfBoundsCount < 50) {
                        takenSpots.push(spot);
                        addSpanPositionStyling(span, spot.startX, spot.startY);
                    }

                    outOfBoundsCount = 0;
                }

                function setupDefaultSpot(width, height) {
                    return {
                        width: width,
                        height: height,
                        startX: centerX - width / 2,
                        startY: centerY - height / 2,
                        endX: centerX + width / 2,
                        endY: centerY + height / 2
                    };
                }

                function moveSpotOnSpiral(spot, angleMultiplier) {
                    var angle = angleMultiplier * 0.1;
                    spot.startX = centerX + (1.5 * angle) * Math.cos(angle) - (spot.width / 2);
                    spot.startY = centerY + angle * Math.sin(angle) - (spot.height / 2);
                    spot.endX = spot.startX + spot.width;
                    spot.endY = spot.startY + spot.height;
                    return spot;
                }


                function spotNotUsable(spot) {

                    var borders = {
                        left: centerX - scope.width / 2,
                        right: centerX + scope.width / 2,
                        bottom: centerY - scope.height / 2,
                        top: centerY + scope.height / 2
                    };

                    for (var i = 0; i < takenSpots.length; i++) {
                        if (spotOutOfBounds(spot, borders) || collisionDetected(spot, takenSpots[i])) return true;
                    }
                    return false;
                }

                function spotOutOfBounds(spot, borders) {
                    if (spot.startX < borders.left ||
                        spot.endX > borders.right ||
                        spot.startY < borders.bottom ||
                        spot.endY > borders.top) {
                        outOfBoundsCount++;
                        return true;
                    } else {
                        return false;
                    }
                }

                function collisionDetected(spot, takenSpot) {
                    if (spot.startX > takenSpot.endX || spot.endX < takenSpot.startX) {
                        return false;
                    }

                    return !(spot.startY > takenSpot.endY || spot.endY < takenSpot.startY);
                }

                function addSpanPositionStyling(span, startX, startY) {
                    var style = "position: absolute; left:" + startX + "px; top: " + startY + "px;";
                    span.attr("style", style);
                    span.removeClass("tangcloud-item-hidden");
                }
            };


        }
    };

    return directive;
}]);

答案 1 :(得分:2)

tang-cloud指令被定义为tangCloud - 从角度docs for directive

中获取此示例

app.js

.directive('myCustomer', function() {
  return {
     template: 'Name: {{customer.name}} Address: {{customer.address}}'
  };
});

的index.html

<div ng-controller="Controller">
  <div my-customer></div>
</div>

请参阅文档this part中的规范化部分。尝试搜索'tangCloud'