指令声明中的角度链接和控制器选项

时间:2016-12-27 15:18:44

标签: angularjs

在阅读documentation时,我可以看到两者的用法:链接方法和指令选项 这两个选项是否可以同时出现在指令声明中?

1 个答案:

答案 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...
        }
      };
    }
  }
})