前提・実現したいこと
現在のstateの値をapiサーバからのレスポンスで上書きしようとしています。
しかし、findIndexで適切な値が見つからずpostIndexの値が-1になってしまいます。
該当のソースコード
Javascript
1 updatePost = (id, title, content) => { 2 axios.patch(`http://localhost:3001/api/v1/posts/${id}`,{title: title, content: content}) 3 .then((response) => { 4 const postIndex = this.state.posts.findIndex((x) => x.id === id) 5 const posts = update(this.state.posts, {[postIndex]: {$set: response.data}}) 6 this.setState({posts: posts}) 7 this.props.history.push('/Index'); 8 }) 9 .catch((data) =>{ 10 console.log(data) 11 }) 12 }
stateのPostの内容は以下の通りです
Post
10: {id: 15, title: "b", content: "b", user_id: null, created_at: "2019-09-09T02:54:31.000Z", …} 21: {id: 16, title: "a", content: "a", user_id: null, created_at: "2019-09-09T03:18:59.000Z", …} 32: {id: 17, title: "c", content: "c", user_id: null, created_at: "2019-09-09T03:19:07.000Z", …} 43: {id: 18, title: "d", content: "d", user_id: null, created_at: "2019-09-09T03:19:17.000Z", …}
そりゃ対象の値がないと-1になりますが、それをどうしたいというはなしでしょうか。
質問がありません
回答1件
あなたの回答
tips
プレビュー