云开发日期范围查询,在iphone上不能正常执行
发布于 5 年前 作者 taofeng 13947 次浏览 来自 问答

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设备上无法正常执行

测试通过云函数去查询,同样存在该问题

1 回复

我也遇到同样的问题

回到顶部