axios.all([
axios.get('https://api.github.com/xxx/1'),
axios.get('https://api.github.com/xxx/2')
])
.then(axios.spread(function (userResp, reposResp) {
// 上面兩個請求都完成后,才執行這個回調方法
console.log('User', userResp.data);
console.log('Repositories', reposResp.data);
}));
