gpt4 book ai didi

spring - 通过 c :out 显示字符串的一部分

转载 作者:行者123 更新时间:2023-12-04 04:35:44 26 4
gpt4 key购买 nike

在我的应用程序中,jsp 上显示了一个字段。我用它写的

<td>
<c:out value="${field}" />
</td>

但是,我不希望显示该值(字段)中的所有内容。只应显示前 15 个字符。我该怎么做?
我正在使用 spring 3.1,它是 amven 项目。
谢谢,

最佳答案

使用这个:

<c:choose>
<c:when test="${fn:length(field) > 15}">
${fn:substring(field,0,10)}...
</c:when>
<c:otherwise>
${field}
</c:otherwise>
</c:choose>

你可以用来显示你的输出,我这里直接写了。

关于spring - 通过 c :out 显示字符串的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19767974/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com