How to upload FormData using Axios?
问题 I am trying to upload 3 photos from frontend using formData. It will call an external API to make the upload. But encountered some errors as below. Frontend upload const formData = new FormData() formData.append('photoA', this.photoA) formData.append('photoB', this.photoB) formData.append('photoC', this.photoC) axios.post(`http://localhost:4172/uploadDocs`, { data: formData, accessToken: store.state.token }, { headers: { // 'Content-Type': 'Application/json', // 'x-access-token': localStorage