我有一个指令链接功能。默认情况下,角度链接函数是一个帖子链接函数,不是吗?如何将其作为预链接?
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);
}
};
});
顺便说一句,它使用要求。