angularjs’指令的编译函数有两个函数:preLink和postLink。
Pre-linking function
Executed before the child elements are linked. Not safe to do DOM transformation since the compiler linking function will fail to locate the correct elements for linking.
Post-linking function
Executed after the child elements are linked. It is safe to do DOM transformation in the post-linking function.
它告诉我们在preLink不应该做什么,我不知道什么和什么时候应该使用preLink?在大多数时间我只是使用postLink。有什么情况下我们必须使用它吗?
你几乎不需要使用preLink。它的可行情况是,当你需要操作范围内的数据,但不是DOM,在执行链接功能(也是其他指令)之前。
原文链接:https://www.f2er.com/angularjs/146042.html正如jacob评论,你总是可以从控制器做,但有时更适合在指令本身的代码。
有一个很好的文章关于指令如何工作,链接顺序被很好地解释为:http://www.jvandemo.com/the-nitty-gritty-of-compile-and-link-functions-inside-angularjs-directives/
如果你需要一个好的例子为什么有时需要预链接,我建议你看一下angular指令本身的代码。例如https://github.com/angular/angular.js/blob/master/src/ng/directive/ngModel.js