skip to Main Content

Reactjs – post an image file to server

db.json The image file I posted to my db.json is missing. const createPost = async (title, image, description) => { const data = new FormData(); data.append('title', title); data.append('image', image); data.append('description', description); const response = await axios.post('http://localhost:3001/posts', data, { headers: {…

VIEW QUESTION
Back To Top
Search