unicloud云对象 如何写 数据库查找账号密码 代码示例
时间: 2023-04-01 12:04:17 浏览: 101
基于uniCloud云开发的外卖小程序
以下是使用unicloud云对象进行数据库查找账号密码的代码示例:
const db = uniCloud.database()
const collection = db.collection('user')
const res = await collection.where({
account: 'your_account',
password: 'your_password'
}).get()
其中,'user'是你的数据库中的集合名称,'account'和'password'是你要查找的字段名称,'your_account'和'your_password'是你要查找的具体账号和密码。
阅读全文