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.
我想将 Flex 4 Date 对象转换为格式为“25 Aug 11”的字符串。
我认为这很容易使用 DateField.dateToString(today,"DD mmm YY"); 但是代码输出 25 0808 11 其中 0808 应该是八月。提取 3 个字母月份值的正确语法是什么?
我在这里想念的是,除了硬编码一个月份值数组(如 {"Jan", "Feb", ..."Dec"} )然后通过索引访问字符串之外,还有其他方法在 flex 中。
任何帮助都会很棒。
发帖后2分钟搞定。我没有使用 DateField,而是使用带有 DD MMM YY 格式字符串的 DateFormatter。
在我做的那样:
dateLabel.text = "截至 " + asOfDateFormatter.format(new Date());