You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Đây là code sử dụng modal ngbootstrap, trong đoạn modalReference em có implement cho sự kiện submitform, Em có đặt ra câu hỏi ở dưới, Trong trường hợp này có nhất thiết phải unsubscribe không? Hoặc có cách nào để mình xử lý thêm ở thằng modalservice cho những thằng đang inject nó. Đây là đoạn sample như này.
constructor(private modalService: NgbModal){}
openDialog() {
const modalRef = this.modalService.open(
AComponent,
this.optionsModal
);
modalRef.componentInstance.reasons = this.BService.reasons.getDataSource();
modalRef.componentInstance.submitForm
.pipe(takeUntil(this))
// - Có nhất thiết phải unsub ở đây không ạ? hay có cách nào đó để mình xử lý ở modal service.
// - takeUntil nó được chạy khi nào ạ!
.subscribe(event => {
// code here
});
}
The text was updated successfully, but these errors were encountered:
Đây là code sử dụng modal ngbootstrap, trong đoạn modalReference em có implement cho sự kiện submitform, Em có đặt ra câu hỏi ở dưới, Trong trường hợp này có nhất thiết phải unsubscribe không? Hoặc có cách nào để mình xử lý thêm ở thằng modalservice cho những thằng đang inject nó. Đây là đoạn sample như này.
The text was updated successfully, but these errors were encountered: