I am implementing this solution for uploading files to the server: File Upload with Angular2 to Rest API
My question is how do I access the formData items in my server-side POST method?
Code:
router.post('/test', function(req, res) {
// Access the formData object sent from the client
// Do stuff...
}
Thanks!