我正在将我的应用程序的FAQ存储到数据库表中,该数据库表格是在本机模板中格式化的。
e.g。
<Text>You can<Text style={{ fontWeight: 'bold' }}> earn up to 1,000 Sparrow points </Text>during the test period</Text>
此外,解码是使用html-entities节点包完成的,它给出了如下字符串。
"<Text>
You can<Text style={{ fontWeight: 'bold' }}> earn up to 1,000 Sparrow points </Text>during the test period
</Text>"
render(){
var data = [];
data.push(this.state.faq);
return(
<View>
{data}
</View>
)
}
问题:它是绑定为字符串,模板未被解析。