我正在使用节点调度程序&它创建了一个像这样的对象:
heroku restart
如何访问{
recurs: true,
year: null,
month: null,
date: null,
dayOfWeek: null,
hour: null,
minute: Range { start: 0, end: 59, step: 2 },
second: 0
}
值?
当我使用minute.Range.step
时,节点会抛出以下错误:
minute.Range.step
我也试过TypeError: Cannot read property 'step' of undefined
,这和我上面尝试过的一样。
答案 0 :(得分:1)
当您在Node中记录对象时,紧接在对象之前的类名称告诉您希望类该对象。
所以在你的情况下,当Node记录
{
...
minute: Range { start: 0, end: 59, step: 2 },
...
}
这实际上意味着您要打印的对象是普通对象,其属性minute
(类型为Range
)具有自己的属性start
,{{ 1}}和end
。
因此,要引用step
,您必须使用step
。