Upload image to strapi
问题 I would like to upload an image to strapi with a html file. When I run the code, I obtain the error: POST http://localhost:1337/upload 500 (Internal Server Error). $.ajax({ type: 'POST', url: 'http://localhost:1337/upload', datatype: 'image/jpeg', data: JSON.stringify(img), complete: function(product) { console.log('Congrats, your product has been successfully created: ', product.description); }, fail: function(error) { console.log('An error occurred:', error); } }); 回答1: As I can see