我正在使用Angle 6 Observable数据服务,而在现有的get subscription方法中设置新响应时,我遇到了无限循环的问题
GetSummaryDetail() {
this.dataService.getMyDetail.subscribe(data => {
debugger;
if (data != null && data != undefined) {
this.summary = data;
this.summary = <IOtherModel>{};
this.summary.AnotherModel = this.AnotherDetail;
this.dataService.setMyDetail(this.summary);
}
}, error => {
console.log(error);
});
}
面朝上的错误-超过最大大小限制 当我打电话
this.dataService.setMyDetail(this.summary);
我一遍又一遍地重定向到调试器。