Axios请求未在componentDidMount上触发

时间:2020-01-27 15:08:46

标签: reactjs axios

我有一个componentdidMount,那里有一个Axios请求。开发服务器进行编译后,我们看不到get请求。

componentDidMount () {
         axios({
             method: 'get',
             baseURL: 'http://localhost:8000/api/',
             url: 'isp/',
             headers: authHeader(),
             Accept: 'application/json'
         }).then(
             function(response) {
                 console.log(response)
             }
         ).catch(
             function(error) {
                 console.log(error)
             }
         )
     }

Network example

0 个答案:

没有答案