Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Có phải tất cả mọi thứ đều nên được unsubscribe #7

Closed
ngnam opened this issue Mar 31, 2020 · 0 comments
Closed

Có phải tất cả mọi thứ đều nên được unsubscribe #7

ngnam opened this issue Mar 31, 2020 · 0 comments

Comments

@ngnam
Copy link

ngnam commented Mar 31, 2020

Đâ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
});
}
@ngnam ngnam closed this as completed Apr 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant