我想用 html 文件将图像上传到 Strapi。运行代码时,出现错误:POST http://localhost:1337/upload 500(内部服务器错误)。
$.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);
}
});
Run Code Online (Sandbox Code Playgroud)