标签:
newsApp.directive(‘newDirective‘, function() {
return {
priority: 0, //优先级
template: ‘‘,
templateUrl: ‘‘, //引入模板链接
replace: false, //替换
transclude: false, //是否保留原有内容
restrict: ‘E‘, // E C A M
controller: ‘‘, // or function(){}
scope: false, //true or {}
require: [‘?ngModel‘],//依赖项
compile: function compile(tElement, tAttrs, transclude) {
return {
pre: function preLink(scope, iElement, iAttrs, controller) {
},
post: function postLink(scope, iElement, iAttrs, controller) {
}
}
},
link: function postLink(scope, iElement, iAttrs) {
}
}
});
标签:
原文地址:http://www.cnblogs.com/qiumohanyu/p/5445477.html