尝试使用映射函数,它一直给我这个错误?
Trying to work with the mapping function and it keeps gives me this error?
TypeError: Cannot read properties of undefined (reading 'map')
11: https://i.stack.imgur.com/jObmG.png
一种可能是 posts 数组为空。如果您向我们展示帖子对象,我们可以提供更好的帮助
可能 posts 在第一次呈现时未定义,因为它来自异步调用。
export default function Post({ posts = []}) { ... }
TypeError: Cannot read properties of undefined (reading 'map')
11: https://i.stack.imgur.com/jObmG.png
一种可能是 posts 数组为空。如果您向我们展示帖子对象,我们可以提供更好的帮助
可能 posts 在第一次呈现时未定义,因为它来自异步调用。
export default function Post({ posts = []}) { ... }