问题 I am doing a request to my server to patch some regular form fields as well as upload an image. If I do these alone in separate requests all works perfectly, but nothing works if the form data and the file are in the same request. This is what it currently looks like: const file = new FormData() file.append('uploadedFile', uploadedFile, uploadedFile.name) const patch = { name: 'Some Name', age: 18, file } return isomorphicFetch(`${MY_URL}`, { headers: { Accept: 'application/json' } method: