RxJS:使用RxJS和Angular

在本章中,我们将看到如何在Angular中使用RxJ。我们不会在这里进入Angular的安装过程。

我们将直接处理一个示例,在该示例中,将使用RxJS中的Ajax加载数据。

app.component.ts

import { Component } from '@angular/core';
import { environment } from './../environments/environment';
import { ajax } from 'rxjs/ajax';
import { map } from 'rxjs/operators'

@Component({
   selector: 'app-root',
   templateUrl: './app.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   title = '';
   data;
   constructor() {
      this.data = "";
      this.title = "Using RxJs with Angular";
      let a = this.getData();
   }
   getData() {
      const response =
      ajax('https://jsonplaceholder.typicode.com/users')
         .pipe(map(e => e.response));
      response.subscribe(res => {
         console.log(res);
         this.data = res;
      });
   }
}

app.component.html

<div>
   <h3>{{title}}</h3>
   <ul *ngFor="let i of data">
      <li>{{i.id}}: {{i.name}}</li>
   </ul>
</div>

<router-outlet></router-outlet>

我们使用了RxJS的ajax,它将从该URL- https: //jsonplaceholder.typicode.com/users加载数据。

编译时,显示如下所示:

RxJS:使用RxJS和Angular

作者:terry,如若转载,请注明出处:https://www.web176.com/rxjs/1751.html

(0)
打赏 支付宝 支付宝 微信 微信
terryterry
上一篇 2021年2月7日 下午9:48
下一篇 2021年2月8日 上午11:00

相关推荐

发表回复

登录后才能评论