迹忆客 专注技术分享

当前位置:主页 > 学无止境 > WEB前端 > Angular >

Angular Subscribe()方法

作者:迹忆客 最近更新:2023/03/13 浏览次数:

我们将介绍 Angularsubscribe() 方法并在我们的应用程序中使用它。

Angular Subscribe() 方法

Subscribe() 是 Angular 中将 observer 连接到 observable 事件的方法。每当对这些 observable 进行任何更改时,都会执行代码并使用 subscribe 方法观察结果或更改。Subscribe()rxjs 库中的一个方法,由 Angular 内部使用。

时事通讯是现在网站中最常见的部分;让我们把它们想象成一个可观察的事件,而我们作为观察者。当我们在任何网站上输入我们的电子邮件到时事通讯表格时,我们订阅了一个可观察的事件。每当该网站发布任何新的时事通讯时,我们都会在我们的电子邮件中收到它,直到我们取消订阅该事件。

同样,如果我们想要在 Angular 应用程序上观察任何函数,我们就会订阅该函数。每当对该函数进行任何更改时,我们都可以使用 subscribe() 方法查看更改。

Subscribe() 接受三个方法作为参数:nexterrorcomplete

让我们通过一个例子来详细了解 subscribe()。首先,我们将创建一个名为 subscribe.service.ts 的新服务文件,我们将在其中创建 assignValue() 函数,该函数将使用 next 方法将值传递给观察者。

我们在 subsribe.service.ts 中的代码将如下所示。

# angular
import { Injectable } from '@angular/core';
import { Observable } from 'rxjs';

@Injectable({
  providedIn: 'root',
})
export class SubscribeService {
  assignValue() {
    const SubscribeObservable = new Observable((observer) => {
      observer.next('Angular');
    });
    return SubscribeObservable;
  }
}

接下来,我们将在 app.module.ts 中导入此服务,并在@NgModule 中将其定义为提供程序。

# angular
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';

import { AppComponent } from './app.component';
import { HelloComponent } from './hello.component';
import { SubscribeService } from './subscribe.service';

@NgModule({
  imports: [BrowserModule, FormsModule],
  declarations: [AppComponent, HelloComponent],
  bootstrap: [AppComponent],
  providers: [SubscribeService],
})
export class AppModule {}

app.component.ts 文件中的下一步中,我们将为我们的服务创建一个构造函数和一个将从观察者那里获取值的函数。并且不要忘记在 app.component.ts 文件中导入我们的服务。

# angular
import { Component, VERSION } from '@angular/core';
import { SubscribeService } from './subscribe.service';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: ['./app.component.css'],
})
export class AppComponent {
  name = 'Angular ' + VERSION.major;

  constructor(private SubscribeService: SubscribeService) {}

  ngClick() {
    this.SubscribeService.assignValue().subscribe((result) => {
      console.log(result);
    });
  }
}

现在,我们将在 app.component.html 中创建一个模板。

# angular
<hello name="{{ name }}"></hello>
<button (click)="ngClick()">Click Here to see result</button>

输出:

Angular 订阅示例

上一篇:Angular stateParams

下一篇:Angular then() 方法

转载请发邮件至 1244347461@qq.com 进行申请,经作者同意之后,转载请以链接形式注明出处

本文地址:

相关文章

在 Angular 中上传文件

发布时间:2023/04/14 浏览次数:71 分类:Angular

本教程演示了如何在 Angular 中上传任何文件。我们还将介绍如何在文件上传时显示进度条,并在上传完成时显示文件上传完成消息。

Angular 2 中的复选框双向数据绑定

发布时间:2023/04/14 浏览次数:139 分类:Angular

本教程演示了如何一键标记两个复选框。这篇有 Angular 的文章将着眼于执行复选框双向数据绑定的不同方法。

在 AngularJs 中加载 spinner

发布时间:2023/04/14 浏览次数:107 分类:Angular

我们将介绍如何在请求加载时添加加载 spinner,并在 AngularJs 中加载数据时停止加载器。

在 Angular 中显示和隐藏

发布时间:2023/04/14 浏览次数:78 分类:Angular

本教程演示了 Angular 中的显示和隐藏。在开发商业应用程序时,我们需要根据用户角色或条件隐藏一些数据。我们必须根据该应用程序中的条件显示相同的数据。

在 Angular 中下载文件

发布时间:2023/04/14 浏览次数:104 分类:Angular

本教程演示了如何在 angular 中下载文件。我们将介绍如何通过单击按钮在 Angular 中下载文件并显示一个示例。

扫一扫阅读全部技术教程

社交账号
  • https://www.github.com/onmpw
  • qq:1244347461

最新推荐

教程更新

热门标签

扫码一下
查看教程更方便