反应中的axios问题

时间:2018-06-11 10:05:57

标签: axios

我正在使用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);
    });

0 个答案:

没有答案