TypeError: Cannot read property 'posts' of undefined
Profile
C:/Users/user/Desktop/Lessons/Project_path_of_Samuray/02-first/my-app/src/Components/Profile/Profile.jsx:15
12 |
13 |
14 |
> 15 | appState = {props.appState.profilePage.posts}
| ^ 16 | // newPostText = {props.profilePage.newPostText}
17 | addPost = {props.addPost}
18 | />
View compiled
При дебаге, показывает, что appState сидит в пропсе, а profilePage.posts уже нет. Показывает просто массив без названий.
addPost: postMessage => {…}
appState: Array(3)
0: {id: 1, post: "Hi, how are you?", likesCount: 12}
1: {id: 2, post: "It's my first post", likesCount: 23}
2: {id: 3, post: "Yooooo, Bro!", likesCount: 83}
length: 3
__proto__: Array(0)
__proto__: Object
-
Вопрос задан
-
38 просмотров