13

哪些对象可以作为参数传递给 AngularJS 中的链接、控制器和编译函数?

4

1 回答 1

19

您要查找的所有信息都可以在 AngularJS 文档网站上找到。

function compile(tElement, tAttrs, transclude) { ... }

function link(scope, iElement, iAttrs, controller) { ... }

function controller(scope, element, attribute, transcludeFn)

查看编写指令长版本

http://docs.angularjs.org/guide/directive

于 2013-01-24T20:18:51.237 回答