我想将Flex 4 Date对象转换为"25 Aug 11"格式的字符串。
我认为这将是很容易使用日期字段。dateToString(今天是"DD mmm YY");然而,代码输出25 0808 11,其中0808应该是8月。拉3个字母的月值的正确语法是什么?
我在这里错过了什么,有没有一种方法在flex除了硬编码的月值数组,如{"Jan", "Feb",…"Dec"},然后通过索引访问字符串。
发帖后2分钟就明白了。我没有使用DateField,而是使用带有DD MMM YY格式字符串的DateFormatter。
In the AS I did:
dateLabel。text = "As of " + asOfDateFormatter。格式(新日期());