const array = ['asdf', 'foo', 'bar']; let users = []; for (i = 0; i < array.length; i++) { axios.get('/user/' + array[i].id).then(response => { // do ...
確定! 回上一頁