Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZhenDeng/ae866e8b41da08d470a718680282c768 to your computer and use it in GitHub Desktop.
Save ZhenDeng/ae866e8b41da08d470a718680282c768 to your computer and use it in GitHub Desktop.
in component
//unsubscribe
ngUnsubscribe: Subject<void> = new Subject<void>();
this.adminService.GetUserByAccount(_.toNumber(this.shareService.readCookie("userId"))).takeUntil(this.ngUnsubscribe).subscribe()
ngOnDestroy() {
this.ngUnsubscribe.next();
this.ngUnsubscribe.complete();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment