0

我需要一些关于使用自定义视觉的帮助。我建立了一个图像分类器来检测汽车损坏。

所以我想做的是:当我尝试输入图像并单击提交按钮时,我希望能够调用自定义视觉 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);
  });
}
4

2 回答 2

1
  1. 检查你的代码,// Request headers { prediction: ("Prediction-Key","xxx"); content: ("Content-Type","xxx"); },

第一个括号似乎被注释掉了,所以这可能是一个潜在的问题。

  1. 您应该将 async/await 与 componentDidMount 方法一起使用。

一个例子

  async componentDidMount() {
const response = await fetch(`https://api.coinmarketcap.com/v1/ticker/?limit=10`);
const json = await response.json();
this.setState({ data: json });

}

于 2019-07-11T19:18:52.013 回答
1

您的请求类型是 post 并且您正在使用 axios.get()

于 2019-07-11T19:20:50.610 回答