gpt4 book ai didi

java - struts 2 if标签用于比较字符类型

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

我无法使用以下代码比较字符类型

<s:if test='aCharType == "Y"'>
This is not working
</s:if>

这里的 aCharType 是长度为 1 的字符类型。

我用谷歌搜索了这个问题,我知道struts 2 if标签可以与字符串类型。

如果你有解决方案,请告诉我。

最佳答案

您正在将 aCharType 与字符串 "Y" 进行比较,将其与 char 'Y' 进行比较

<s:if test="aCharType == 'Y'">
This is working
</s:if>

关于java - struts 2 if标签用于比较字符类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14963126/

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