VUE

 created() {
    var that=this
    axios.get('http://jsonplaceholder.typicode.com/todos')
    .then(function (res) {
      // handle success
      // console.log(res);
      that.todos = res.data
    })
    .catch(function (error) {
      // handle error
      console.log(error);
    })
    .finally(function () {
      // always executed
    });
    },
}
原文地址:https://www.cnblogs.com/500m/p/11781438.html