如何显示空格而不是“0”在输入 spring 标签中
在我的应用程序中,我需要有一个文本字段(MNC ID),它是 int 类型,为空,虽然它在表单中显示为空白,但它的值显示为“0”。我该怎么做?我正在使用,但我发现我没有表单中的值标签:spring标签的输入,我如何在表单中包含值标签:输入标签,以便我可以将其留空“”?请在这方面帮助我
In my application, i need to have a text field (MNC ID), which is int type,empty while its displayed in the form as a blank space, but instead its appering as "0" as the value.How can i do this?I am using but as i found that i dont have a value tag in the form:input of spring tag, how can i include a value tag in the form:input tag so the i can leave it blank ""? pls help me in this regard
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 Integer 类型而不是 int 类型。
Use type Integer instead of type int.
您可以创建一个自定义
PropertyEditor
,它将0
转换为空字符串,反之亦然。例如,请参阅此处。You can create a custom
PropertyEditor
which would convert0
to empty string and vice versa. See, for example, here.