我正在使用MultiLineLabel组件在前端显示固定长度的数据, 但它在显示数据时有问题 当数据行包含多个空格时,例如
1234232 44343 4343343
11111111111144343 4343343
这里第一行被截断
1234232 44343 4343343
11111111111144343 4343343
因为我看到这个组件使用<p></p>
要显示数据,<P>
具有属性,它将截断显示的空格。
有人可以帮助我如何在前端显示我的固定长度数据吗?
答案 0 :(得分:0)
There is nothing to do with the <p>
. This is a common property of HTML - multiple spaces are collapsed into one.
You can pre-process the String you pass to MultiLineLabel with: Strings.replace(original, " ", " ");