You need to subscribe to an Observable
. As I understood, in your case this.post
is not type of an Observable
.
As this.post
is populated at some point of time, you need to subscribe
to an observable
which should emit data when you say this.post
is now populated with data. For that you can use a Subject.
See this example: link
CLICK HERE to find out more related problems solutions.