python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Storing values from components into a global service
I am trying to create a global service which will store the data from components, and using this global service I want to create a breadcrumb based on the specific values present in the service.
I hav...
David Jackson
Votes: 0
Answers: 1
Angular - BehaviorSubject next() call causes problems on logout
I am working on an Angular project with multi-tenant support. When the user switches to another tenant, other components are notified so they can perform a reload to show the data for the new tenant. ...
Chris
Votes: 0
Answers: 1
How can I do it with just one Behaviorsubject?
I have this code:
private _fileData$: BehaviorSubject<string> = new BehaviorSubject<string>('');
private _storageData$: BehaviorSubject<Array<string>> = new BehaviorSubject<...
dawideeem
Votes: 0
Answers: 1
Angular, ErrorHandler and BehaviorSubject: update message only second click
I am trying to implement a general http handler error, but I found a strager behavior. My Error component only update the message error only after second click, but I dont know why.
The code is availa...
Glauco Todesco
Votes: 0
Answers: 1