我正在使用axios。我的代码如下。我在使用console.log()
时收到输出。
axios.get('http://127.0.0.1:8000/api/addresses?page=' + this.state.val,{
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + Auth.getToken(),
},})
.then(function (response) {
//console.log(response.data.data); // I am getting output here
this.setState({result: response.data.data}); // TypeError: Cannot read property 'setState' of undefined
})
.catch(function (error) {
console.log(error);
});