[ ANGULAR ] 새로운 subscribe 패턴 const subscription = this.apiService.post(params) .pipe(first()).subscribe({ next: (res) => { }, error: (error) => { }, complete: () => { this.getData(); this.commonService.loadFinish(); } }); FE/Angular HEON.D 2023.06.03