angularjs-factory,provider,service,constant,value,decorator
2021-07-09 18:05
YPE >
标签:service factory decorator value provider
1、factory
用 Factory 就是创建一个对象,为它添加属性,然后把这个对象返回出来。你把 service 传进 controller 之后,在 controller 里这个对象里的属性就可以通过 factory 使用了。
html>Document
2、provide
Providers 是唯一一种你可以传进 .config() 函数的 service。当你想要在 service 对象启用之前,先进行模块范围的配置,那就应该用 provider。
html>Document
3、service
Service 是用"new"关键字实例化的。因此,你应该给"this"添加属性,然后 service 返回"this"。你把 service 传进 controller 之后,在controller里 "this" 上的属性就可以通过 service 来使用了。
html>Document
4、constant与value
constant不可修饰
html>Document
5、decorator
html>Document
angularjs-factory,provider,service,constant,value,decorator
标签:service factory decorator value provider
原文地址:http://f1yinsky.blog.51cto.com/12568071/1942874
文章标题:angularjs-factory,provider,service,constant,value,decorator
文章链接:http://soscw.com/index.php/essay/102887.html