Angular2 http.get(),map(),subscribe()和observable模式 – 基本的了解

现在,我有一个初始页面,我有三个链接。一旦你点击最后的“朋友”链接,适当的朋友组件启动。在那里,
我想获取/获取我的朋友的列表,进入friends.json文件
到现在一切工作正常。但我仍然是一个新手角色的HTTP服务使用RxJs的observables,地图,订阅概念。我试图理解它,阅读了几篇文章,但直到我进行实际工作,我不会理解这些概念正确。

这里我已经做了plnkr这是工作除了HTTP相关的工作。

Plnkr

myfriends.ts

import {Component,View,CORE_DIRECTIVES} from 'angular2/core';
 import {Http,Response,HTTP_PROVIDERS} from 'angular2/http';
 import 'rxjs/Rx';
 @Component({
    template: `
    <h1>My Friends</h1>
    <ul>
      <li *ngFor="#frnd of result">
          {{frnd.name}} is {{frnd.age}} years old.
      </li>
    </ul>
    `,directive:[CORE_DIRECTIVES]
  })

  export class FriendsList{

      result:Array<Object>; 
      constructor(http: Http) { 
        console.log("Friends are being called");

       // below code is new for me. So please show me correct way how to do it and please explain about .map and .subscribe functions and observable pattern.

        this.result = http.get('friends.json')
                      .map(response => response.json())
                      .subscribe(result => this.result =result.json());

        //Note : I want to fetch data into result object and display it through ngFor.

       }
  }

请正确指导和解释。我知道这将对许多新的开发人员有利。

这里是你错了的地方:
this.result = http.get('friends.json')
                  .map(response => response.json())
                  .subscribe(result => this.result =result.json());

它应该是:

http.get('friends.json')
                  .map(response => response.json())
                  .subscribe(result => this.result =result);

要么

http.get('friends.json')
                  .subscribe(result => this.result =result.json());

你犯了两个错误

1-您将observable本身分配给this.result。当你真的想把朋友列表分配给this.result。正确的做法是:

>你订阅了observable。 .subscribe是实际执行observable的函数。它需要三个回调参数,如下所示:

.subscribe(success,failure,complete);

例如:

.subscribe(
    function(response) { console.log("Success Response" + response)},function(error) { console.log("Error happened" + error)},function() { console.log("the subscription is completed")}
);

通常,从成功回调中获取结果并将其分配给变量。
错误回调是自解释的。
完整的回调用于确定您已收到最后的结果(即用于调用Websocket端点)。
在你的plunker上,完成的回调将总是在成功或错误回调之后被调用

2-第二个错误,你在.map(res => res.json())上调用了.json(),然后你再次在observable的成功回调上调用它。.map()是一个变换器,它会将结果转换为任何你返回的(在你的情况下.json()),然后传递给成功回调你应该在其中一个上调用它一次。

相关文章

AngularJS 是一个JavaScript 框架。它可通过 注:建议把脚本放在 元素的底部。这会提高网页加载速度,因...
angluarjs中页面初始化的时候会出现语法{{}}在页面中问题,也即是页面闪烁问题。出现这个的原因是:由于...
AngularJS 通过被称为指令的新属性来扩展 HTML。AngularJS 指令AngularJS 指令是扩展的 HTML 属性,带有...
AngularJS 使用表达式把数据绑定到 HTML。AngularJS 表达式AngularJS 表达式写在双大括号内:{{ expres...
ng-repeat 指令可以完美的显示表格。在表格中显示数据 {{ x.Name }} {{ x.Country }} 使用 CSS 样式为了...
$http是 AngularJS 中的一个核心服务,用于读取远程服务器的数据。读取 JSON 文件下是存储在web服务器上...