1

我得到了一段代码:

trace((array[0][0]));
trace((array[0][0] is Date));
trace((array[0][0] as Date).time());

这是我的输出:

Fri Aug 9 12:10:00 GMT+0200 2013
true
TypeError: Error #1006: value is not a function.
    ...

我很困惑。我怎样才能解决这个问题?

//编辑: 哦,应该是

trace((array[0][0] as Date).time);
4

2 回答 2

2
trace((array[0][0] as Date).getTime());

或者

trace((array[0][0] as Date).time);

该错误表明“时间”不是 Date 类的函数 - 它不是,它是一个属性。但是有一个功能getTime()可能就是您所寻求的。

日期类手册

于 2013-08-09T10:15:46.893 回答
0

An refresh() call after setting sort to null made this RTE go away for me.

This solution was originally suggested at ArrayCollection removing sort topic

于 2015-02-11T09:52:40.993 回答