- 需求的场景描述(希望解决的问题)
数据库字段有空格,例如:"Part No",where查询的时候,应该怎么填?
const promise = db.collection(event.part).skip(i * MAX_LIMIT).limit(MAX_LIMIT).where({
"Part No": "M0516LDE"
}).get()
我这样写,查不到数据
- 希望提供的能力
框架类型 | 问题类型 | 终端类型 | AppID | 基础库版本 |
---|---|---|---|---|
小程序 | 需求 | 工具 | wx105ea8361b1eaa46 | v1.02.1812180 |
2 个回答
const promise = db.collection(event.part).skip(i * MAX_LIMIT).limit(MAX_LIMIT).where({
"Part No": "M0516LDE"
}).get()
Part No 部分也能用正则表达式?
https://developers.weixin.qq.com/miniprogram/dev/wxcloud/reference-client-api/database/db.regexp.html
正则查询
"PWM":8*16-bit
LQFP48
M0516LDE
-
2
上面是我的数据库,Part No后面有个'.'
const countResult = await db.collection(event.part).where({
"Part No.": "M0516LDE"
}).count({
})
我这样写查询不成功?
这就不知道了