当我从图库发送图像时,它命中了一个API并保存了图像,但是当我从相机中获取图像时,它甚至没有命中了api,它直接进入了陷阱。
为了发送图像,我一直在使用获取http请求。在获取标头中,我指定了Accept和Content-Type标头信息。
fetch(API_URI + 'scan/vin', {
method: "POST",
headers: {
'Accept': 'application/json',
'Content-Type': 'multipart/form-data;
},
body: file
})
.then(response =>response.json())
.then(response => {
console.log('image response',response)
})