答案 0 :(得分:0)
很遗憾,您的时间戳记不是ISO8601格式(2018-12-22T12:35:40.289028Z
),因此您不能使用重新思考的.during
方法。但是您可以回退到字符串比较:
r.db("test").table("sample").filter(function(doc){
return doc("Message")("timestamp").gt("2018-12-22 12:30:00.000000")
.and(doc("Message")("timestamp").lt("2018-12-22 12:31:00.000000"))
}).count()