小程序云函数查询数据库

  • Post author:
  • Post category:小程序


云函数中的方法:

// 云函数入口文件
const cloud = require('wx-server-sdk')
cloud.init()
// 云函数入口函数
exports.main = async (event, context) => {
 return await cloud.database().collection('playlist')  //云数据库集合名称
  .skip(event.start) 
  .limit(event.count) //每次查询对应的总数
  .orderBy('Time','desc') //逆序排序
  .get()
  .then((res)=>{
    return res 
  })
}

在小程序中调用:

_getList() {  //自己定义的方法
    wx.cloud.callFunction({
      name:' yunName ',  //云函数的名称
      data:{
      	//对应云函数定义的参数
        start:this.data.number , 
        count:LIMIT 
      }
    }).then((res)=>{
      console.log(res)
       })
  },



版权声明:本文为wang_J_8799原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。