3

我有一个指令链接功能。默认情况下,角度链接函数是一个帖子链接函数,不是吗?如何将其作为预链接?

app.directive("textBoxCol", function () {
        return {
            require: "^grid",
            restrict: "E",
            replace: true,
            scope: {
                title: "@title",
                cssClass: "@class",
                dataField: "@field"
            },
            link: function ($scope, element, attrs, grid) {
                $scope.type = ColumnType.TextBox;
                tableControl.addColumn($scope);
            }
        };
    });

顺便说一句,它使用要求。

4

1 回答 1

0

您将需要实现该compile函数并从中返回该prelink函数。

取自 Angular 的文档(https://docs.angularjs.org/api/ng/service/%24compile):

compile: function compile(tElement, tAttrs, transclude) {
  return {
    pre: function preLink(scope, iElement, iAttrs, controller) { ... },
    post: function postLink(scope, iElement, iAttrs, controller) { ... }
  }
  // or
  // return function postLink( ... ) { ... }
},
于 2015-11-24T12:23:43.877 回答