This question already has answers here:
What is the $$ (double dollar sign) used for in angular?
(2个答案)
4年前关闭。
如果
(2个答案)
4年前关闭。
如果
$
表示Angular中的内置服务,那么$$
前缀是什么意思?我只是在控制台中检查范围,看到了$$watchers, $$listeners
等 最佳答案
$$
前缀变量被视为私有变量,在变量名之前添加$$
的原因是,这将避免内部变量冲突,并且不会暴露给外部使用。
就像在angular中一样,您可以找到许多它们,$$observers
,$$watchers
,$$childHead
,$$childTail
,$$ChildScope
等。
关于angularjs - $$的含义 Angular ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34884621/
10-08 22:23