GWT 从日期字段获取值
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这对我来说效果很好:
dateField.getText();
This works fine for me:
dateField.getText();
如果要将字符串转换为日期字段,则必须对其进行解析。 请记住,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.
我也多次使用过日期字段。
日期字段字段 = 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.