import axios from 'axios' class App { /** * API に GET リクエストを送信するメソッド。何もキャッシュしないバージョンです。 */ async request(url) { return await axios.get(url) } /** * API を使ってなにかするメソッドです。 */ async doSomethingWithAPI(url, index) { const result = await this.request(url) console.log(index, result.data) } async main() { const url = 'http://localhost:8000/api/test.json' // API の結果を使いたい処理が 10 個あるものとします。 for (let i = 0; i
