jsxをtsxに書き直しています。
以下のエラーが出ているのですが解決方法がわかりません。
わかる人がいましたら教えて欲しいです。
// エラー内容 Uncaught (in promise) TypeError: response.json is not a function
デベロッパーツールでは以下の行でエラーが出ていると言われています。
const errors = await errorMessages(response);
econst camelizeJson = (json) => humps.camelizeKeys(json); const errorMessages = (response) => response.json() .then(camelizeJson) .then((error) => error.errorMessages); const handleError = (error: any) => { const response = error.response; switch (response.status) { case NOT_ACCEPTABLE: (async () => { const errors = await errorMessages(response); ErrorMessage(errors.join('\n')); })(); break; default: handleErrorMessage(SERVER_ERROR); break; } }
あなたの回答
tips
プレビュー