GWT 从日期字段获取值

发布于 2024-07-14 11:48:56 字数 212 浏览 8 评论 0原文

我正在使用 GWT ext 并尝试从页面获取值并将其设置在 pojo 类中。

除了日期字段之外,所有值都是使用

(TimeField) ComponentMgr.getComponent(id[2])).getText())....

获取的。但是,在对日期字段使用相同的代码片段时,它无法执行。

任何人都可以帮我解决这个问题吗......

I am using GWT ext and trying to get the values from page and setting it in pojo class.

Except date field all the values are obtained using

(TimeField) ComponentMgr.getComponent(id[2])).getText())....

But while using the same snippet for date field it fails to perform.

Can any one help me with this issue please......

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

不必了 2024-07-21 11:48:56

这对我来说效果很好:

dateField.getText();

This works fine for me:

dateField.getText();

懒猫 2024-07-21 11:48:56

如果要将字符串转换为日期字段,则必须对其进行解析。 请记住,GWT 1.6 中已经提供了开箱即用的日期选择器。 如果您使用的版本不附带日期选择器,可以使用多个项目例如< /a>

If you want to convert a string to a date field, you'll have to parse it. Bear in mind that there are already out-of-the-box date pickers in GWT 1.6. If you're using a version that does not come with date pickers, there are several projects like this.

偏闹i 2024-07-21 11:48:56

我也多次使用过日期字段。
日期字段字段 = new DateField();
字段.getValue();

这将以 Date 实例的形式返回值。因此,如果您的 pojo 有 date 属性,那么您需要解析它。
对于字符串值,您应该使用 getText() 方法。

I have also used date field many times.
DateField field = new DateField();
field.getValue();

This will return value as Date instance.So If your pojo has date property then you need to parse it.
For the string value you should go for getText() method.

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