やりたいこと
Articleコンポーネント
のprops
のuser
に、findUser
で見つかったuserの情報を渡したいです。
jsx
1export const Home = () => { 2 const [users, setUsers] = useState([]) 3 const [articles, setArticles] = useState([]) 4 5 useEffect(() => { 6 const fetchData = async () => { 7 const result = await fetchHome() 8 setArticles(result.articles) 9 setUsers(result.users) 10 } 11 fetchData() 12 }, []) 13 14 const findUser = (users, articleUserId) => { 15 return users.find( user => user.id === articleUserId ) 16 } 17 18 return ( 19 <ul> 20 { articles.map( article => ( 21 <Article 22 article={ article } 23 user={ findUser(users, article.user_id) } 24 /> 25 )) 26 } 27 </ul> 28 ) 29}
state
のusers
には
{ "id": 1, "name": "user_0", "email": "example0@example.com", "created_at": "2021-07-26T22:22:41.511Z", "updated_at": "2021-07-26T22:22:41.511Z" }, { "id": 2, "name": "user_1", "email": "example1@example.com", "created_at": "2021-07-26T22:22:41.539Z", "updated_at": "2021-07-26T22:22:41.539Z" }, { "id": 3, "name": "user_2", "email": "example2@example.com", "created_at": "2021-07-26T22:22:41.557Z", "updated_at": "2021-07-26T22:22:41.557Z" }
state
のarticles
には
{ "id": 1, "title": "title0", "user_id": 1, "created_at": "2021-07-26T22:22:41.516Z", "updated_at": "2021-07-26T22:22:41.516Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 2, "title": "title1", "user_id": 2, "created_at": "2021-07-26T22:22:41.518Z", "updated_at": "2021-07-26T22:22:41.518Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 3, "title": "title2", "user_id": 3, "created_at": "2021-07-26T22:22:41.526Z", "updated_at": "2021-07-26T22:22:41.526Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 4, "title": "title3", "user_id": 1, "created_at": "2021-07-26T22:22:41.528Z", "updated_at": "2021-07-26T22:22:41.528Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 5, "title": "title4", "user_id": 2, "created_at": "2021-07-26T22:22:41.530Z", "updated_at": "2021-07-26T22:22:41.530Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 6, "title": "title5", "user_id": 3, "created_at": "2021-07-26T22:22:41.531Z", "updated_at": "2021-07-26T22:22:41.531Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 7, "title": "title6", "user_id": 1, "created_at": "2021-07-26T22:22:41.533Z", "updated_at": "2021-07-26T22:22:41.533Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 8, "title": "title7", "user_id": 2, "created_at": "2021-07-26T22:22:41.534Z", "updated_at": "2021-07-26T22:22:41.534Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }, { "id": 9, "title": "title0", "user_id": 3, "created_at": "2021-07-26T22:22:41.542Z", "updated_at": "2021-07-26T22:22:41.542Z", "content": "aaaaaaaaaaaaaaaaaaaaaaaaa" }
というデータが入っています。
findUser
関数ではarticles.map
で渡ってきたarticle
のarticle.user_id
と、user.id
が同じであれば、
そのuser
を返却するということしています。
しかし、現状では
TypeError: Cannot read property 'name' of undefined
というエラーがでます。
これは、user
を渡している子コンポーネントであるArticle
でuser.name
という風に使用しており、
現状ではuser
はundefined
になっているため、該当のエラーが出現していると考えています。
どのようにすれば、Atricleコンポーネント
のprops
のuser
に
{ "id": 1, "name": "user_0", "email": "example0@example.com", "created_at": "2021-07-26T22:22:41.511Z", "updated_at": "2021-07-26T22:22:41.511Z" }
を渡せるでしょうか?
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。