如何在flex中将字符串数据类型转换为日期数据类型
我必须将一个字符串类型字段转换为 Flex 中的日期数据类型。
我可以做什么来解决这个问题?
I have to convert one string type field to date datatype in flex.
What can I do solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
归功于:
http://amthekkel.blogspot.com/ 2009/02/flex-converting-date-string-to-date.html
with credit to:
http://amthekkel.blogspot.com/2009/02/flex-converting-date-string-to-date.html
或者
我们可以使用自定义 DateUtils 类
or
we can use a custom DateUtils class
您还可以将
Date.parse
函数与Date.setTime
函数结合使用,从字符串创建新的Date
对象。You can also use the
Date.parse
function with theDate.setTime
function to create a newDate
object from a string.