我正在使用 Robomongo,我在其中手动插入一个对象。
我想在我的对象上有一个字段,即当前日期。通常我习惯Date.now()
在Javascript中使用。但是,当我在 Robomongo 工具中使用插入文档表单时,我得到:
Unable to parse JSON:
Expecting '(', at (4, 15).
示例 JSON:
{
serial: '1231323123',
game: 'World of Warcraft',
date: Date.now()
}
知道如何插入此记录吗?