如何显示空格而不是“0”在输入 spring 标签中

发布于 2024-10-31 05:12:29 字数 149 浏览 1 评论 0原文

在我的应用程序中,我需要有一个文本字段(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

山人契 2024-11-07 05:12:29

使用 Integer 类型而不是 int 类型。

Use type Integer instead of type int.

沫离伤花 2024-11-07 05:12:29

您可以创建一个自定义 PropertyEditor ,它将 0 转换为空字符串,反之亦然。例如,请参阅此处

You can create a custom PropertyEditor which would convert 0 to empty string and vice versa. See, for example, here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文