链接、控制器和编译函数中的各种注入物是什么

What are the various injectables in the link, controller and compile functions?

本文关键字:注入 是什么 控制器 编译 函数 链接      更新时间:2023-09-26

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

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

function compile(tElement, tAttrs, transclude) { ... }
function link(scope, iElement, iAttrs, controller) { ... }
function controller(scope, element, attribute, transcludeFn)

在"编写指令"下查找 长版本

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