- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我开发了一个具有两个 View 的组件。组件 A 有一个联系表单,组件 B 是“谢谢”页面。
组件A:您填写表格并提交。一旦响应到达,就会创建一个新的 ReplaySubject 值。用户将被路由到组件B。
组件B:组件已初始化。组件从主题获取值。 View 已呈现并显示感谢消息。
HTTP 调用响应(表单数据发布请求成功后返回):
{
"status": 200,
"body": {
"message": "We have received your request with the card information below and it will take 48h to be processed. Thank you!",
"card": {
"name": "John Doe",
"email": "john.doe@gmail.com",
"accountNumber": "12345-67890"
}
},
"type": "ItemCreated"
}
组件A(表单)代码:
import { Component } from '@angular/core';
import { FormBuilder, Validators } from '@angular/forms';
import { RequestCardWidgetService } from './request-card-widget.service';
import { RouterService } from '@framework/foundation/core';
import { Item } from '@pt/request-card-data'
@Component({
selector: 'pt-request-card-form',
templateUrl: './request-card-form.template.html',
providers: [RouterService]
})
export class RequestCardFormComponent {
constructor(private fb: FormBuilder, private data: RequestCardWidgetService, private router: RouterService){}
item: Item = {
name: '',
email: '',
accountNumber: ''
};
requestCardForm = this.fb.group({
name: ['', Validators.required],
email: ['', Validators.email],
accountNumber: ['', Validators.required]
})
onSubmit() {
this.item = this.requestCardForm.value;
this.data.requestCard(this.item)
.subscribe(data => {
this.data.processResult(data);
this.router.navigate(['/success']);
});
}
}
组件B(感谢页面)代码:
import { Component } from '@angular/core';
import { RequestCardWidgetService } from './request-card-widget.service';
@Component({
selector: 'pt-request-card-success',
templateUrl: './request-card-success.template.html'
})
export class RequestCardSuccessComponent {
messages: any; // TODO: To use the proper type...
constructor( private requestCardService: RequestCardWidgetService) {
this.messages = this.requestCardService.message;
}
}
组件 B 模板(感谢页面):
<div *ngIf='(messages | async) as msg'>
{{ msg.message}}
</div>
组件服务代码:
import { Injectable } from '@angular/core';
import { HttpResponse } from '@angular/common/http';
import { Observable, ReplaySubject } from 'rxjs';
import { map, take } from 'rxjs/operators';
import {
RequestCardDataService,
Item,
ItemCreated
} from '@example/request-card-data';
@Injectable()
export class RequestCardWidgetService {
constructor(private dataService: RequestCardDataService) { }
private readonly results = new ReplaySubject<ItemCreated>();
readonly message: Observable<ItemCreated> = this.results; // Message Line. This is the variable that I'm rendering in the template. Is this the correct way of extracting subject values?
requestCard (card: Item): Observable<ItemCreated> {
return this.dataService.postCardRecord(card).pipe(
take(1),
map((response: HttpResponse<ItemCreated>): ItemCreated | {} => {
return response.body
? response.body
: {};
})
);
}
processResult(data: ItemCreated) {
this.results.next(data);
}
}
回顾:组件A具有形状。提交表单后,结果将作为新值存储在主题中。用户被路由到感谢页面。感谢页面组件呈现元素并从主题获取最新值。然后它呈现内容。
此代码有效,但我确实有一些问题。
问题:这是使用主题的正确方法吗?
这是:
readonly message: Observable<ItemCreated> = this.results;
从主题中提取值的正确方法? (我正在将“消息”传递给 View 。)
是否有更好的方法来达到相同的结果?预先非常感谢。
最佳答案
ReplaySubect
unconstrained 将重放之前发送给新订阅者的所有值。这可能会导致用户可以接收先前发出的消息,直到他们最终收到当前消息。因此,要么限制主题,要么考虑使用 BehaviorSubject
反而。
一个Subject
其所有衍生品都是 Observable
和 Observer
s。向消费者提供主题时,您不希望公开 Observer
接口(interface),即消费者永远不能调用 next
, error
或complete
。因此,正如评论中所建议的,您应该确保只公开 Observable
首先调用 asObservable
与消费者交互方法。
readonly message: Observable<ItemCreated> = this.results.asObservable();
如果您想继续在组件之间使用基于服务的通信,那么我认为您有机会根据问题评论中链接的文档来清理/优化您的代码。
如果您的应用程序的复杂性将会增加,我会引导您采用 Redux 风格的架构并研究 NgRx具体来说,使用效果来管理副作用。
效果可以通过简单、谨慎的可观察构造满足您的所有要求,即处理表单提交、接收响应、甚至导航到成功页面的效果。 More information about effects can be found here .
对于简单的任务来说,redux 架构可能有些过头了,但如果您正在开发一个管理大型状态树的大型应用程序,我更喜欢这种方法,而不是基于服务的集成。
关于javascript - 使用 rxjs ReplaySubject 在两个组件之间共享数据的正确方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54336187/
我有一个外部热源在观察者可以订阅之前推送值。订阅后,迟到的观察者应该收到最新的值以及从那时起的每个值。为此,我使用了以下代码(相关行标有“ console.warn('!!!', n)); 这行不通(
如何将多个错误传递给 ReplaySubject? 当我调用 OnError 时,只有第一个异常被传递。我需要多次调用并传递所有错误/异常。 我在内部看到 RX 创建了一个 AnonymousSafe
我有一个 ReplaySubject,它使用 scan 运算符累积数据,每 10000 毫秒应重置一次。还有其他方法吗? 现在: let subject = new ReplaySubject();
我正在使用 ReactiveX/RxJS 版本。 假设我有一个 Rx.ReplaySubject,它每 2 秒发出一个包含 id 和带有值的数组的对象。我想减少这个值数组并得到它们的总和。 问题是 R
我有一个奇怪的用例,我需要跟踪所有以前发出的事件。 感谢 ReplaySubject,到目前为止它运行良好。在每个新订阅者上,此主题都会重新发出以前的每个事件。 现在,对于特定场景,我需要能够只提供最
下面是一个描述我正在尝试做的事情的片段。在我的应用程序中,我有一个贯穿始终的 replaysubject。在某个时候,我想获得主题发出的最后一个值,但是 last似乎不适用于 ReplaySubjec
我在 Angular 4 中使用的模板有问题。该模板实现了一个通知系统,您可以在其中添加新通知,但文档没有指定如何删除观察者 ReplaySubject 的元素。 模板将其实现为服务,如下所示: pr
我想用这样的加入: Observable.forkJoin( this.service1.dataSourceIsAReplaySubject, this.service2.dataS
我在我正在处理的 Silverlight 应用程序中遇到了一个绝对奇怪的行为。请看下面的代码: var replaySubject = new ReplaySubject(1); replay
根据我目前对 RxJS 中 ReplaySubject 的理解,下面的代码应该可以工作: import { ReplaySubject } from 'rxjs/ReplaySubject'; pri
我想创建一个冷可观察对象,它只会在有实际订阅时才开始执行昂贵的操作。 ReplaySubject 非常适合,除了我需要能够在实际订阅而不是创建可观察对象时启动昂贵的后台操作的部分。有办法吗?某种 on
我将状态保存在一个 ReplaySubject 中,它会重播状态的最后一个副本。从该状态,派生出其他 ReplaySubjects 来保持……好吧,派生状态。每个重放主题只需要保存它的最后计算状态/派
如何清除 ReplaySubject 上的缓冲区? 我需要定期清除缓冲区(在我的例子中作为一天结束的事件)以防止 ReplaySubject 不断增长并最终吃掉所有内存。 理想情况下,我希望保持相同的
我有一个 rxjs ReplaySubject,它会根据我所处的环境发出一个值或 null。意思是如果在某个环境中我进行服务调用并获取数据。如果我不在那个环境中,我只是在重播主题上调用 next(nu
我开发了一个具有两个 View 的组件。组件 A 有一个联系表单,组件 B 是“谢谢”页面。 组件A:您填写表格并提交。一旦响应到达,就会创建一个新的 ReplaySubject 值。用户将被路由到组
我需要一种方法来获取最近添加到符合特定条件的 ReplaySubject 的项目。下面的示例代码完成了我需要它做的事情,但感觉不是正确的方法: static void Main(string[] ar
我一直在尝试让我的流仅重播最新的值,但运气不佳。基本上,我有一个 replaySubject(1) 在我不能手动 .onNext 的地方。我想做的是接受它,将它映射到其他东西,然后添加一个初始值。 我
我有 CompositeSubscription ,并在那里添加带有 ReplaySubject 的 Subscription CompositeSubscription compositeSubs
我在 RxSwift 中有这个: func foo() -> Observable { let subject = RxSwift.ReplaySubject.create(bufferSiz
标题 如果您基本上有相同的问题并且您的上下文是 Angular,您可能需要阅读答案中的所有评论以获得更多上下文。 这个问题的简短版本 在做 let observe$ = someReplaySubje
我是一名优秀的程序员,十分优秀!