getData = () => new Promise(resolve=>{ axios.get(url).then(res=>{ resolve(res) }) }) 其实可以简化至此 getData = () => axios.get(url)