With a regular observable you only get the value when it changes, so if you want to console.log out the value you will need to console.log it in the subscription:
this.buyer12Org$ = this.GetOrg();this.buyer12Org$.subscribe((res) => console.log('buyer12', res));
No comments:
Post a Comment