React Native中解析HTML
使用这个react-native-htmlview可以解析HTML字符串。实现效果和vue中的v-html指令或jQuery中$(Selector).html()相同
示例:
import React from 'react'import {Text,View} from 'react-native'
import HTMLView from 'react-native-htmlview'
export default class Favorites extends React.Component{
render(){
let html = `<p><a href="http://jsdf.co">♥ nice job!</a></p>`
return <View>
<HTMLView value={html}/>
<Text>{html}</Text>
</View>
}
}
使用前需要安装 yarn add react-native-htmlview
,具体使用方式参见这里
上面代码实现的效果如下图:
以上是 React Native中解析HTML 的全部内容, 来源链接: utcz.com/z/383240.html