reactとredux toolkitを使用した開発を行っています。
APIへリクエスト後に返ってきたレスポンスのボディを取得したいのですが、うまく取得できずに困っております。
Typescript
1//post.sliceファイル 2 3export const startRecordRoad = createAsyncThunk( 4 "post/startRecordRoad", 5 async () => { 6 try { 7 const { data } = await Axios.post( 8 `/post/`, 9 { postType: "2" }, 10 { 11 method: "POST", 12 headers: { 13 Authorization: localStorage.getItem("Authorization") 14 } 15 } 16 ); 17 console.log(data); 18 return data; 19 } catch (e) { 20 throw new Error(e.response.status); 21 } 22 } 23); 24 25builder.addCase(startRecordRoad.fulfilled, (_state: PostState, action) => { 26 action.payload = "201"; 27 }); 28 builder.addCase(startRecordRoad.rejected, (_state: PostState, action) => { 29 throw new Error(action.error.message); 30 });
Typescript
1//tsxファイル 2 3import { startRecordRoad } from "~/store/slice/Domain/post.slice"; 4 5const handleClickRecordBtn = async () => { 6 await dispatch(startRecordRoad()) 7 .then(payload => { 8 console.log(payload); 9 }) 10}
post.sliceファイルに記述しているAxiosは別ファイルからインポートしているAxiosInstanceです。
post.slice内のconsole.log(data)ではレスポンスボディの内容が出力されています。
本来はtsxファイルのconsole.log(payload)でもレスポンスボディの内容を出力したい思っていたのですが、実際にはtsxファイル内のconsole.log(payload)では、meta,type,payloadというフィールドを持つオブジェクトが出力されます。
tsxファイル内でレスポンスボディが出力されるようにするには、どのように修正すれば良いでのしょうか。
あなたの回答
tips
プレビュー