angular之$controller

对于$controller ,用来初始化controllers的。

$controller(constructor,locals,later,ident)

对于 constructor 参数: if called with a function then it's

对于 locals 参数: injection locals for controller

对于 later 参数:私有内部使用的

对于 ident 参数:私有内部使用的。


对于返回的内容: instance of given controller 

var ctrlLocals = {};

ctrlLocals.$scope = ;
ctrlLocals.$xxx =  ;

$controller(exController,ctrlLocals);

这样了之后,就会手动的将$scope 注入以及别的东西注入到了controller里面去了。

你可能感兴趣的:(angular之$controller)