什么是Angular2中实际使用的http绑定

时间:2016-07-31 06:02:23

标签: javascript angular angular2-http

Angular2中实际使用的http绑定是什么?任何工作代码或plunker?在文档中没有记录,并说使用HTTP提供程序。

https://angular.io/docs/ts/latest/api/http/index/HTTP_BINDINGS-let.html

https://angular.io/docs/ts/latest/api/http/index/HTTP_PROVIDERS-let.html

1 个答案:

答案 0 :(得分:1)

HTTP_BINDINGSHTTP_PROVIDERS之间的差异与https://stackoverflow.com/a/38682856/217408

中所述的相同

HTTP_PROVIDERS是一组服务,您可以将这些服务注入到自定义服务和组件或指令中以进行HTTP调用,如

constructor(http:Http) {
  http.get(someUrl).subscribe(...)
}