限制NativeBase文本的长度

时间:2019-02-24 12:09:38

标签: android ios reactjs react-native native-base

我使用NativeBase文本组件,我想按字符限制它。例如,它仅显示前10个字符。

该怎么做?

2 个答案:

答案 0 :(得分:0)

<Text numberOfLines={1} ellipsizeMode='head'>your very long text goes here <Text>

允许的模式为head, tail, middle,clip

Read more

答案 1 :(得分:0)

使用切片功能:

var str = "012345678911111111"; 
var res = str.slice(0, 10);

输出:

  

0123456789