gpt4 book ai didi

javascript - react/redux 映射函数不返回值

转载 作者:行者123 更新时间:2023-11-29 20:58:01 25 4
gpt4 key购买 nike

我在从 map 函数返回值时遇到问题。我从我的数据库中获取数据作为对象数组。通过这样的操作获取 em:

componentDidMount() {
this.props.fetchArticle();
}

我返回的数据是这样的:(这只是一个例子,看看它是否有效)

if(this.props.article) {
const articles = this.props.article.data;
console.log(articles); // here I got my data, as in the screenshot
articles.map((article => {
return (
<div>
Title: {article.title} <br/>
Img: <img src={article.img} style={{height:100}}/> <br/>
Author: {article.author.username} <br/>
Desc: {article.desc} <br/>
Content{article.content} <br/>
Add date: {new Date(article.addDate).toLocaleString()} <br/>
</div>
)
}));
}

最佳答案

您只需要返回 map 调用的结果即可。

代替

articles.map((article => {
....

你需要

return articles.map((article => {
....

关于javascript - react/redux 映射函数不返回值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48251644/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com