在阅读documentation时,我可以看到两者的用法:链接方法和指令选项 这两个选项是否可以同时出现在指令声明中?
答案 0 :(得分:0)
所以所有人都可以一起使用,感谢Deblaton。
.directive("directiveName",function () {
return {
controller: function() {
// controller code here...
},
compile: {
// compile code here...
return {
pre: function() {
// pre-link code here...
},
post: function() {
// post-link code here...
}
};
}
}
})