云开发日期范围查询,在iphone上不能正常执行
db.collection(‘pushformid’)
.where({
_openid: wx.getStorageSync(“openid”),
createdAt: _.gt(new Date(startdate)), // 大于等于(一定要是日期格式)
}).count({
success(res) {
var total = res.total;
console.log(“当前订阅数量=” + total);
if (total > 0) {
that.setData({
count: total
})
}
}
})
在android手机上查询正常,在iOS设备上无法正常执行
测试通过云函数去查询,同样存在该问题