要件
- APIへアクセスする処理は別ファイルにしたい
- async/awaitを使いたい
- axiosを使いたい
下のコードだと、undefinedになってしまいます
- test.js
import fetchApi from '../lib/store'; export default function() { async function call() { const res = await fetchApi(); console.log(res);//undefined } call(); }
- lib/store.js
import axios from "axios" export default function() { async function fetchApi() { try { const response = await axios.get('https://jsonplaceholder.typicode.com/todos/1'); return response; } catch (error) { return error; } } }
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。