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.
我正在使用 GWT ext 并尝试从页面获取值并将其设置在 pojo 类中。
除日期字段外,所有值均使用
(TimeField) ComponentMgr.getComponent(id[2])).getText())....
但是,在对日期字段使用相同的代码段时,它无法执行。
任何人都可以帮我解决这个问题......
这对我来说很好:
dateField.getText();
如果要将字符串转换为日期字段,则必须对其进行解析。请记住,GWT 1.6 中已经有开箱即用的日期选择器。如果您使用的版本没有日期选择器,有几个类似 的项目。
我也多次使用日期字段。日期字段字段 = 新日期字段();字段.getValue();
这将作为 Date 实例返回值。因此,如果您的 pojo 具有 date 属性,那么您需要对其进行解析。对于字符串值,您应该使用 getText() 方法。