unicloud

unicloud,第1张

unicloud 常用知识 查询数据库查询某一字段的数据条件筛选查询

unicloud官方教程

查询数据库 查询某一字段的数据

需求:数据库中有 4 列,查询数据库,只要返回第 1 列的数据即可

语法:

db.collection("表的名称").field('限制字段').get().then(res => {
	// console.log(res)
})

例子:

db.collection("lottery_type_jvhe").field('lottery_id').get().then(res => {
	console.log(res)
})

延伸:查询第 1 列和第 2 列的数据。语法:

db.collection("表的名称").field('限制字段1, 限制字段2').get().then(res => {
	// console.log(res)
})
条件筛选查询 中可以用 where;用 JQL 的话,官方 没有明确具体给出写法。可以用以下写法:

语法:

db.collection('表名').where(`字段名=="${变量}"`).get().then(res => {
	//	console.log(res)
})

例如:

db.collection('history').where(`name=="${res.result.data[i].typeName}"`).get().then(res => {
	console.log(res)
})

// 释义:获取 history 表中,name 字段为 res.result.data[i].typeName 的数据。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/941005.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-17
下一篇 2022-05-17

发表评论

登录后才能评论

评论列表(0条)

保存