我想在 React Native 的 Text 组件中插入一个新行(如 \r\n, <br />)。
如果我有:
<text>
<br />
Hi~<br />
this is a test message.<br />
</text>
然后 React Native 渲染 Hi~ this is a test message.
是否可以渲染文本以添加新行,如下所示:
Hi~
this is a test message.
我想在 React Native 的 Text 组件中插入一个新行(如 \r\n, <br />)。
如果我有:
<text>
<br />
Hi~<br />
this is a test message.<br />
</text>
然后 React Native 渲染 Hi~ this is a test message.
是否可以渲染文本以添加新行,如下所示:
Hi~
this is a test message.
这应该这样做:
<Text>
Hi~{"\n"}
this is a test message.
</Text>
你也可以这样做:
<Text>{`
Hi~
this is a test message.
`}</Text>
我认为更容易,因为您不必在字符串中插入内容;只需将其包装一次即可保留所有换行符。
利用:
<Text>{`Hi,\nCurtis!`}</Text>
结果:
你好,
柯蒂斯!
这对我有用
<Text>{`Hi~\nthis is a test message.`}</Text>
(react-native 0.41.0)
如果您要显示来自状态变量的数据,请使用它。
<Text>{this.state.user.bio.replace('<br/>', '\n')}</Text>