I'm just getting into using Angular (using version 7.2.2) after starting to dislike jquery mobile.
I'm a bit confused of how to get the JSON response from a post request using the http client, this is what I have so far:
this.http.post(this.appService.getWPEndPoint('content/dashboard'),null,{})
I've seen different examples using something called "pipe" and another "subscribe"... but they are all confusing.
In jQuery I would just do this:
$.post(URL,OPTIONS,function(response){
},'json');
I just want to do this same sort of thing in angular but I can't figure out here how to get the response like I would in jQuery; can someone point me in the right direction please?