不用三元运算符 直接将map返回值赋给变量为什么会报错 map is not a function?
来源:16-4 个人收藏文章列表开发(上)
GGW_极客
2017-08-11
const {news} = this.state;
const newsList = news.map((newsItem, index) => (
<li key={index}>
<Link to={`details/${newsItem.uniquekey}`} target="_blank">
{newsItem.title}
</Link>
</li>
));
写回答
1回答
-
Parry
2017-08-11
是不是没有安装 babel 对 es6 的语法做转换?可以贴一下详细错误截图吗?
022017-08-11
相似问题