angular.js - The difference between global variables in angularjs
PHP中文网
PHP中文网 2017-05-15 16:54:33
0
2
704

constant/value/js global definition What are the differences between these 3?

PHP中文网
PHP中文网

认证0级讲师

reply all(2)
洪涛

1. Global variables in js exist in the entire global space, angular的两个方法产生的常量只在angular的上下文中有作用。
2.angular中的constant()创建的是一个可以被配置的常量,而value()创建的是一个不可以被配置的常量。
3.具体:constant()方法可以将一个已经存在的变量注册为服务,然后通过依赖注入,可以注入到应用的其他部分中去,注意:产生的常量不可以被装饰器拦截
4.value()方法和上面的方法基本一样,不同之处在于:使用constant()方法产生的常量可以通过.config来配置,但是value()产生的常量不可以配置。
5.通常用value()来注册服务对象或者函数,而用constant() to configure data.

PHPzhong

http://stackoverflow.com/a/13015756/2586541

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template