小程序
小游戏
企业微信
微信支付
扫描小程序码分享
js代码如下:
const countResult = db.collection('stu_uni').where({
status: 1,
major_classify: 1
}).count()
console.log(countResult)
console.log(countResult.total)
运行结果:
想问countResult.total这个引用方式是不对吗?为什么输出undefined?
走过路过的大佬求求了康康我!是我太菜实在不知道怎么写5555
2 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
const countResult = await db.collection('stu_uni').where().get()
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
另外还有查询得到的结果如果想使用其中的某个数值该怎么写呢?
for (let i = 0; i < 21; i++) {
const promise = db.collection('stu_uni').skip(i * MAX_LIMIT).limit(MAX_LIMIT).where({
}).get()
//console.log(promise)
this.data.tasks.push(promise)
}
console.log(this.data.tasks)
},
结果输出如图:
如果想使用查询结果中的gpa属性值该怎么写呢?
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
const countResult = await db.collection('stu_uni').where().get()
另外还有查询得到的结果如果想使用其中的某个数值该怎么写呢?
for (let i = 0; i < 21; i++) {
const promise = db.collection('stu_uni').skip(i * MAX_LIMIT).limit(MAX_LIMIT).where({
status: 1,
major_classify: 1
}).get()
//console.log(promise)
this.data.tasks.push(promise)
}
console.log(this.data.tasks)
},
结果输出如图:
如果想使用查询结果中的gpa属性值该怎么写呢?