0

我有一个类似于下面代码的指令。它工作正常,但我不得不求助于创建内联模板代码,因为我不希望模板在点击事件触发之前呈现。但是,如果我可以分配指令模板并延迟渲染直到事件触发,它会更清晰。

有没有办法做到这一点?

(function() {
  app.directive("nodeTabset", function($compile) {
    return {
      restrict: "A",
      scope: '&',
      controller: [
        '$scope', '$element', '$attrs', '$compile', function($scope, $element, $attrs, $compile) {
          var TABS;

          // Ad hoc template
          TABS = "<div id='node-tabset-wrapper'>\n  <div id='node-tabset'>\n    <div>Set Attribute</div>\n    <div ng-show='node.name == \"a\"'>Set Scrape Job</div>\n  </div>\n  <div id='node-tabset-corner'></div>\n</div>";

          $scope.selectNode = function(node) {
            node.addClass("selected");
            node.prepend(TABS);
            $compile(node.children()[0])($scope);
            return $scope.$apply();
          };
          return $scope.evaluateSelection = function($event) {
            var parent, 
            parent = angular.element($event.currentTarget).parent();

            // do some stuff
             return $scope.selectNode(parent);
          };
        }
      ],
      link: function(scope, element, attrs, controller) {
        return element.bind('click', scope.evaluateSelection);
      }
    };
  });

}).call(this);
4

2 回答 2

0

ng-if. 它将删除元素,直到表达式为真并创建它,新的范围和所有。绑定单击以将 bool 更改为 true 并将该 bool 设置在 ng-if 中。

于 2013-09-08T00:30:23.353 回答
0

我认为您需要查看承诺库 $q

于 2013-09-07T23:47:24.173 回答