↧
Answer by spiritwalker for Node / React : I can't upload an image with my...
I don't see the file data gets sent to server from your POST request. // object post doesn't have the file data await POST(ENDPOINTS.CREATE_POST, post);Consider using FormData const submitHandler =...
View ArticleNode / React : I can't upload an image with my post with multer
I'm trying to create a small social network in which we can send posts (with or without images).I manage to create posts without an image (just text), it works very well, but as soon as I add an image...
View Article