欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

微信小程序云開(kāi)發(fā)實(shí)現(xiàn)增刪改查功能-創(chuàng)新互聯(lián)

本文實(shí)例為大家分享了微信小程序云開(kāi)發(fā)實(shí)現(xiàn)增刪改查的具體代碼,供大家參考,具體內(nèi)容如下

創(chuàng)新互聯(lián)專(zhuān)注于昂仁企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè)公司,電子商務(wù)商城網(wǎng)站建設(shè)。昂仁網(wǎng)站建設(shè)公司,為昂仁等地區(qū)提供建站服務(wù)。全流程定制開(kāi)發(fā),專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,創(chuàng)新互聯(lián)專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)

首先按照微信小程序官方提示創(chuàng)建一個(gè)快速云開(kāi)發(fā)小程序

大家可以點(diǎn)擊此處下載源代碼

實(shí)現(xiàn)效果如下:

微信小程序云開(kāi)發(fā)實(shí)現(xiàn)增刪改查功能

在miniprogram->index的下修改下面三個(gè)文件

index.js如下:

Page({
 data: {
  id: '',//修改用來(lái)保存_id
  iSshow: true,
  inpVal: '',
  inp2Val: '',
  inp3Val: '',
  list: []
 },
 
 onLoad: function () {
  var that = this
  that.getUserMsg()//讀取信息
 },
 //獲取文本框內(nèi)容
 getName(e) {
  this.setData({
   inpVal: e.detail.value
  })
 },
 
 getAge(e) {
  this.setData({
   inp2Val: e.detail.value
  })
 },
 getCreated(e) {
  this.setData({
   inp3Val: e.detail.value
  })
 },
 //獲取信息
 getUserMsg() {
  var that = this
  const db = wx.cloud.database()
  db.collection('datalist').get({
   success: function (res) {
    console.log(res)
    that.setData({
     list: res.data
    })
   }
  })
 },
 //添加信息
 setUserMsg() {
  var that = this
  const db = wx.cloud.database()
   db.collection('datalist').add({
    data: {
     name: that.data.inpVal,
     age: that.data.inp2Val,
     created: that.data.inp3Val
    },
    success: function (res) {
     console.log(res)
     that.setData({
      inpVal: "",
      inp2Val: "",
      inp3Val:""
     })
     console.log(that.data.inpVal + '--' + that.data.inp2Val + '--' + that.data.inp2Val)
     that.getUserMsg()
    }
   })
 },
 //刪除信息
 delUserMsg(e) {
  var that = this
  const db = wx.cloud.database()
  var id = e.currentTarget.dataset.id
  db.collection('datalist').doc(id).remove({
   success: function (res) {
    console.log(res)
    that.getUserMsg()
   }
  })
 },
 //修改回顯
 changeMsg(e) {
  var that = this
  var id = e.currentTarget.dataset.id
  const db = wx.cloud.database()
 
  db.collection('datalist').doc(id).get({
   success: function (res) {
    that.setData({
     inpVal: res.data.name,
     inp2Val: res.data.age,
     inp3Val:res.data.created,
     show: false,
     id: res.data._id
    })
   }
  })
 
 },
 //更新提交
 updetMsg(e) {
  var that = this
  var id = e.currentTarget.dataset.id
  const db = wx.cloud.database()
  db.collection('datalist').doc(id).update({
   data: {
    name: that.data.inpVal,
    age: that.data.inp2Val,
    created:that.data.inp3Val
   },
   success: function (res) {
    that.getUserMsg()
    that.setData({
     inpVal: '',
     inp2Val: '',
     inp3Val:'',
     show: true
    })
   }
  })
 },
})

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無(wú)理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性?xún)r(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專(zhuān)為企業(yè)上云打造定制,能夠滿足用戶(hù)豐富、多元化的應(yīng)用場(chǎng)景需求。

網(wǎng)頁(yè)標(biāo)題:微信小程序云開(kāi)發(fā)實(shí)現(xiàn)增刪改查功能-創(chuàng)新互聯(lián)
URL地址:http://aaarwkj.com/article22/jchjc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供營(yíng)銷(xiāo)型網(wǎng)站建設(shè)、網(wǎng)站改版動(dòng)態(tài)網(wǎng)站、Google、品牌網(wǎng)站建設(shè)品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶(hù)投稿、用戶(hù)轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化
人妻的秘密一区二区三区| 人妖伪娘在线观看一区二区三区 | 亚洲黄色片一区二区三区| 久久精品国产亚洲av久一一区| 久久欧精品欧美日韩精品| 韩国黄色理论片一区二区麻豆| 人妻操人人妻中出av| 久久久久精品久久久| 天天操夜夜夜夜夜操| 国产精品黄色片在线观看 | 国产精品亚洲欧美日韩综合| 国产亚洲精品久在线| 亚洲精品成人中文字幕| 亚洲国产精品欧美激情| 青青草原在线影视一区| 国产欧美成人综合色就色| 日韩在线不卡一二三| 亚洲香蕉av在线一区二区三区| 婷婷五五月深爱开心激情| 亚洲黄色手机在线网站| 中文字幕五月久久婷热| 人妻熟女一区二区aⅴ在线视频| 91精品大片免费在线观看| 91麻豆精品一二三区在线| 国产亚洲精品美女视频| 精品少妇人妻av蜜桃| 亚洲激情久热中文字幕| 国产日韩精品一区二区三区在线| 国产丝袜美女一区二区| 91精品手机在线观看| 精华国产一区二区三区| 亚欧成人永久免费视频| 欧美另类不卡在线观看| 日韩精品专区在线影院重磅| 一区二区三区日韩激情| 亚洲精品综合在线二区| 另类欧美亚洲中文在线综合| 熟妇人妻精品一区二区| 日韩不卡免费一区二区三区视频| 天天操天天夜夜操夜夜| 熟女精品国产一区二区三区|