Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含多个文本字段的表单。当我用数据填充它时,有一些整数文本字段显示“0”,这是整数的默认值。我希望文本字段为空白而不是零。
<s:textfield id="txtPhone" name="phone"/>
请帮忙。
您需要使用Integer类而不是int为此。int 将始终初始化为 0。S2 OGNL 和类型转换器将为您处理类型转换。
Integer
int
对于 Integer,默认值为 null,它将解决您的问题。
如果该字段确实是可选的,则将该字段设为整数,因此默认值为空!