欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

微信小程序云开发实现数据添加、查询和分页

程序员文章站 2023-08-16 09:22:13
本文实例为大家分享了微信小程序云开发实现数据添加、查询和分页,供大家参考,具体内容如下 实现的效果 实现要点 wxml 不同类别数据的显示 通过 if-elif...

本文实例为大家分享了微信小程序云开发实现数据添加、查询和分页,供大家参考,具体内容如下

实现的效果

微信小程序云开发实现数据添加、查询和分页

实现要点

wxml 不同类别数据的显示

通过 if-elif-else 实现,在wxml文件中通过 <block></block>渲染,因为它仅仅是一个包装元素,不会在页面中做任何渲染,只接受控制属性。也就是说可以通过属性来控制页面是否要渲染这部分的内容,可以减少页面渲染时间。
云开发数据的获取

先开通云开发功能 ,参考,然后在创建项目的时候勾选上 使用云开发模板(看个人吧,我直接使用后点击项目中的 login)就可以获取到用户的oppenid,之后就可以使用云数据库了。

云开发登录:

微信小程序云开发实现数据添加、查询和分页

云数据的获取

微信小程序云开发实现数据添加、查询和分页

 /**
 * 生命周期函数--监听页面加载
 */
 onload: function(options) {
 console.log('onload');
 this.getdata(this.data.page); 
 },
 /**
 * 获取列表数据
 * 
 */
 getdata: function(page) {
 var that = this;
 console.log("page--->" + page);
 const db = wx.cloud.database();
 // 获取总数
 db.collection('topic').count({
  success: function(res) {
  that.data.totalcount = res.total;
  }
 })
 // 获取前十条
 try {
  db.collection('topic')
  .where({
   _openid: 'osly***********vu1kwze', // 填入当前用户 openid
  })
  .limit(that.data.pagesize) // 限制返回数量为 10 条
  .orderby('date', 'desc')
  .get({
   success: function(res) {
   // res.data 是包含以上定义的两条记录的数组
   // console.log(res.data)
   that.data.topics = res.data;
   that.setdata({
    topics: that.data.topics,
   })
   wx.hidenavigationbarloading();//隐藏加载
   wx.stoppulldownrefresh();
   
   },
   fail: function(event) {
   wx.hidenavigationbarloading();//隐藏加载
   wx.stoppulldownrefresh();
   }
  })
 } catch (e) {
  wx.hidenavigationbarloading();//隐藏加载
  wx.stoppulldownrefresh();
  console.error(e);
 }
 },

云数据的添加

 /**
 * 保存到发布集合中
 */
 savedatatoserver: function(event) {
 var that = this;
 const db = wx.cloud.database();
 const topic = db.collection('topic')
 db.collection('topic').add({
  // data 字段表示需新增的 json 数据
  data: {
  content: that.data.content,
  date: new date(),
  images: that.data.images,
  user: that.data.user,
  islike: that.data.islike,
  },
  success: function(res) {
  // res 是一个对象,其中有 _id 字段标记刚创建的记录的 id
  // 清空,然后重定向到首页
  console.log("success---->" + res)
  // 保存到发布历史
  that.savetohistoryserver();
  // 清空数据
  that.data.content = "";
  that.data.images = [];

  that.setdata({
   textcontent: '',
   images: [],
  })

  that.showtipandswitchtab();

  },
  complete: function(res) {
  console.log("complete---->" + res)
  }
 })
 },

云数据的删除

可查看官放文档,这里不贴代码了,有问题联系。

云数据的更新

可查看官放文档,这里不贴代码了,有问题联系。

数据列表的分页

主要就是定义一个临时数组存放加载上来的数据,然后通过传递给对象,最后传递到布局中去。 

/**
 * 页面上拉触底事件的处理函数
 */
 onreachbottom: function() {
 var that = this;
 var temp = [];
 // 获取后面十条
 if(this.data.topics.length < this.data.totalcount){
 try {
 const db = wx.cloud.database();
 db.collection('topic')
  .skip(5)
  .limit(that.data.pagesize) // 限制返回数量为 5 条
  .orderby('date', 'desc') // 排序
  .get({
  success: function (res) {
  // res.data 是包含以上定义的两条记录的数组
  if (res.data.length > 0) {
  for(var i=0; i < res.data.length; i++){
   var temptopic = res.data[i];
   console.log(temptopic);
   temp.push(temptopic);
  }

  var totaltopic = {};
  totaltopic = that.data.topics.concat(temp);

  console.log(totaltopic);
  that.setdata({
   topics: totaltopic,
  })
  } else {
  wx.showtoast({
   title: '没有更多数据了',
  })
  }


  },
  fail: function (event) {
  console.log("======" + event);
  }
  })
 } catch (e) {
 console.error(e);
 }
 }else{
 wx.showtoast({
 title: '没有更多数据了',
 })
 }
 
 },

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。