如何获取 Flex 中格式化的当前日期时间
我正在尝试获取 Flex/AIR 中的当前日期时间?
I'm trying to get the current date time in Flex/AIR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在尝试获取 Flex/AIR 中的当前日期时间?
I'm trying to get the current date time in Flex/AIR?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
要获取当前日期时间,只需在构造函数中创建一个不带任何值的新 Date 对象,如下所示:
格式化它取决于您想要如何格式化它;这是一种选择:
To get the current date time, just create a new Date object with no values into the constructor, like this:
Formatting it depends on how you want to format it; here is one option:
来自:http://livedocs.adobe.com/flex /3/html/help.html?content=08_Dates_and_times_5.html
和
http: //docs.huihoo.com/flex/4/Date.html
From : http://livedocs.adobe.com/flex/3/html/help.html?content=08_Dates_and_times_5.html
and
http://docs.huihoo.com/flex/4/Date.html