我有一个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)
}
)
}