我将值从一个组件传递到另一个具有动态形式的组件,但在该组件中,未接收到值。如果我在将值传递给动态表单时做错了,或者这不是动态表单可以接收值的方式,我没有得到。
我没有粘贴整个代码,否则它会太大,所以我只提到了相关的代码片段。如果需要进一步说明,请告诉我。
在AdminService中,这是服务类,其中subject定义如下:
startedEditingItem=new Subject<string>();
在ProductItemsComponent中,值按如下方式发送给另一个组件。
onEdit(index:number){
console.log("on edit"+this.productId+":"+this.childProductId+":"+index)// This is being printed , so value is sent
this.adminService.startedEditingItem.next(this.productId+":"+this.childProductId+":"+index);}
在ItemEditComponent中,订阅价值如下
ngOnInit() {
console.log("edit item on init") // printed on console
this.subscription=this.adminService.startedEditingItem.subscribe(
(id:string)=>{
console.log("edit item>"+id); // not printed on console.so value is not received
this.initForm();});
this.initForm();}
答案 0 :(得分:0)
你真的需要Subject
吗?您可以使用简单的服务更轻松地进行通信,而无需使用Subject
。例如:
import { Injectable } from '@angular/core';
@Injectable()
export class DataService {
serviceData: string;
}
您可以在此处找到更多详细信息:https://blogs.msmvps.com/deborahk/build-a-simple-angular-service-to-share-data/
这里有一个吸烟者: