I\'m wondering if I can make just a http post request without subscribing on callbacks, something like this
this._http.post(\'/list/items/u
You can simply use toPromise method like below:
public getEmployerListFromService() { const url = `/list/items/update?itemId=`; return this.http.get(url).toPromise().then(response => { console.log(response); }) }
And Call this method by :
this.service.getEmployerListFromService();