has anyone used ionic 2 and Laravel API routes mechanism together
how to get the data passed along with the post request in angular 2.
http.post('someurl.com', {title: "title goes here", body: "Body goes here"})
.map(res => res.json()).
subscribe(res => {
console.log(res);
})
via Anees Kodappana