我正在一个项目中,使用rss-parser
将来自多个站点的RSS feed解析为汇总的工作板。提要对于title
使用不同的格式,因此,解析的JSON也具有不同的格式。请参见下面三种不同格式的示例。
title: Roundtrip: Senior Product Designer
title: Frontend Developer
title: Unreal is looking for a Product Designer
我想要做的是统一标题/公司格式
Roundtrip: Senior Product Designer
分为company: Roundtrip
和title: Senior Product Designer
Unreal is looking for a Product Designer
分为company: Unreal
和title: Product Designer
。目前,它们已使用状态合并到数组中
this.setState(prevState => ({
data: this.state.data.concat(feed.items)
}));
但这使我处于一种不同的标题格式变得非常明显的位置。
我该如何拆分这些字符串,然后然后将它们合并到组合数组中?
答案 0 :(得分:1)
您可以在这些项目上运行一个地图,以获得带有标题和公司密钥的新阵列。
.tooltip {
font-family: Arial,sans-serif !important;
}