13

在 AngularJS 中用于发送请求,我使用内置的 $http 服务。

我应该使用什么来向 Angular 中的服务器发送请求?我找不到任何涵盖该主题的文档。

4

2 回答 2

5

编辑:现在Angular 2网站上有新 http 服务的api 预览

目前 Angular 2 中有一个基本的http 服务,但它现在非常简约。该软件处于 alpha 阶段,很可能会发生变化,因此您可能只想使用fetch API,实现自己的XMLHttpRequest,或者改用jQuery之类的库。目前,Angular 2 http api 与fetch API基本相同。鉴于fetch不太可能改变,我建议只使用它。

如果你想使用 Angular 2 服务,这里有一个例子......

import {bootstrap, Component, View, NgFor, Inject} from 'angular2/angular2';
import {Http, httpInjectables} from 'angular2/http';

@Component({selector: 'http-app'})
@View({
  directives: [NgFor],
  template: `
    <h1>people</h1>
    <ul class="people">
      <li *ng-for="#person of people">
        hello, {{person.name}}
      </li>
    </ul>
  `
})
export class HttpCmp {
  people: Object;
  constructor(http: Http) {
    http.get('./people.json').toRx().map(res => res.json()).subscribe(people => this.people = people);
  }
}
于 2015-06-22T15:16:36.590 回答
3

简单的 http 获取示例:

http.get('./friends.json').map((res: Response) => res.json()).subscribe(res => this.result = res);

我在这里有一个工作示例:http ://www.syntaxsuccess.com/viewarticle/angular-2.0-and-http

于 2015-07-22T02:41:37.940 回答