小程序端查询数据库的代码
时间: 2024-05-06 12:02:56 浏览: 46
以下是一个简单的小程序端查询数据库的代码示例:
1. 首先,在小程序端的 app.js 文件中进行数据库初始化:
```
App({
globalData: {
db: null
},
onLaunch: function() {
wx.cloud.init({
env: 'your-env-id',
traceUser: true
})
const db = wx.cloud.database()
this.globalData.db = db
}
})
```
2. 在需要查询数据的页面js文件中,调用数据库实例的 collection 方法获取集合的引用,并使用 where 方法添加查询条件,最后使用 get 方法获取数据:
```
const app = getApp()
Page({
data: {
list: []
},
onLoad: function() {
const db = app.globalData.db
db.collection('your-collection-name').where({
// 查询条件
}).get().then(res => {
this.setData({
list: res.data
})
})
}
})
```
其中,'your-collection-name' 是你需要查询的集合名称,查询条件可以根据具体需求进行设置。最终查询结果将保存在页面的 list 数据中,可以在页面中进行展示。
阅读全文