云开发使用http 调用查询,查询前3天的数据,怎么写?
let nowTime = +new Date();
nowTime=nowTime + 2460601000;
sql =`db.collection(‘category’).where({ createTime: db.command.gt(${new Date(nowTime))}).get()`;
执行后,返回报错,无法查询到相关信息,需要怎么写才正确,使用http调用