This is how an item
from the RSS feed that Im trying to parse looks like:
(这是Im试图解析的RSS feed中的item
的样子:)
<item>
<title>
Former cop gets 18 years in prison for shooting civilian to death
</title>
<description>
<![CDATA[
<a href="https://e.vnexpress.net/news/news/former-cop-gets-18-years-in-prison-for-shooting-civilian-to-death-4020110.html"><img width=130 height=100 src="https://i-english.vnecdn.net/2019/11/30/phuoc146331574997301-157508140-8364-4799-1575086150_180x108.jpg" ></a></br>A Dong Nai court sentenced a former traffic policeman to 18 years in prison on Friday for fatally shooting a man in a family feud.
]]>
</description>
<pubDate>Sat, 30 Nov 2019 12:00:00 +0700</pubDate>
<link>
https://e.vnexpress.net/news/news/former-cop-gets-18-years-in-prison-for-shooting-civilian-to-death-4020110.html
</link>
<guid>
https://e.vnexpress.net/news/news/former-cop-gets-18-years-in-prison-for-shooting-civilian-to-death-4020110.html
</guid>
<slash:comments>0</slash:comments>
</item>
This is how I get the title
from the RSS feed, I'm using react-native-rss-parser
( https://www.npmjs.com/package/react-native-rss-parser ):
(这是我从RSS feed获得title
的方式,我正在使用react-native-rss-parser
( https://www.npmjs.com/package/react-native-rss-parser ):)
fetch('https://vnexpress.net/rss/tin-moi-nhat.rss')
.then((response) => response.text())
.then((responseData) => rssParser.parse(responseData))
.then((rss) => {
this.setState(prevState => ({
...prevState,
title0: rss.items[0].title
}))
})
const Feeds = ([
{
pic: require('../assets/images/image.jpg'),
title: Object.keys(this.state.title0).map(k => this.state.title0[k]),
caption: ''
},
])
I'm trying to parse the description
and the imageUrl
which is nested inside the description tag.
(我正在尝试解析description
和嵌套在描述标签内的imageUrl
。)
How would I do that?(我该怎么做?)
Any suggestions?(有什么建议么?)
ask by DarkLord666 translate from so
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…