我需要一些关于使用自定义视觉的帮助。我建立了一个图像分类器来检测汽车损坏。
所以我想做的是:当我尝试输入图像并单击提交按钮时,我希望能够调用自定义视觉 API 并获取结果,以便以后能够使用 ReactJS 分析它们
我尝试使用 AXIOS 和 componentDidMount() 方法,但我似乎无法掌握它们。
componentDidMount(){
axios.get('url: "https://southcentralus.api.cognitive.microsoft.com/customvision/v3.0/Prediction/...",
// Request headers {
prediction: ("Prediction-Key","xxx");
content: ("Content-Type","xxx");
},
type: "POST",
// Request body
data: imgContent,
processData: false')
.then(response => {
console.log(response.data);
})
.catch(error => {
console.log(error);
});
}