溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信小程序如何修改本地緩存key中單個數(shù)據(jù)的詳解

發(fā)布時間:2020-10-05 18:04:53 來源:腳本之家 閱讀:326 作者:lff1123 欄目:web開發(fā)

最近在做教師評教系統(tǒng),有一個‘個人信息'頁面中有個編輯修改郵箱的功能,本來想得很簡單,結果進坑了,搞了好久才出來。

我想實現(xiàn)的效果是點擊下圖左側郵箱,然后進入右側頁面,進行郵箱的修改,點擊提交后跳轉到左側頁面,同時郵箱也發(fā)生改變。

微信小程序如何修改本地緩存key中單個數(shù)據(jù)的詳解

點擊‘我的'時,我讓它從控制臺打印出student緩存中傳過來的數(shù)據(jù),如下:

{no: "1635050601", name: "張三", sex: "", email: "123@qq.com", classid: "100000-1602", …}
classid:"100000-1602"
classname:"16級PHP2"
departmentid:"100000"
departmentname:"軟件學院"
name:"張三"
no:"1635050601"
sex:""

然后我添加郵箱后,后臺接口寫了方法讓email的值直接存到student中,但是如果初次添加email的話可以實現(xiàn),第二次修改email的話,就得想想該怎么從student里只修改email的值。

 //表單提交
 formSubmit: function (e) {
 console.log(e.detail.value);
 var pwd = e.detail.value.pwd;
 var email = e.detail.value.email;
 if (pwd == '') {
  wx.showToast({
  title: '密碼不能為空',
  icon: 'none',
  duration: 1000,
  })
 }else if (email == '') {
  wx.showToast({
  title: '郵箱不能為空',
  icon: 'none',
  duration: 1000,
  })
 }else {
  //post方式提交
  wx.request({
  url: app.globalData.url.bindemail,
  method: "POST",
  data: {
   no: this.data.no,
   pwd: pwd,
   email: email
  },
  header: {
   "Content-Type": "application/x-www-form-urlencoded"
  },
  success: function (res) {
   // console.log(res);
   if(res.data.error == true){
   wx.showToast({
    title: res.data.msg,
    icon: 'none',
    duration: 1000,
   })
   }else{
   //修改email
   var _student = wx.getStorageSync('student');
   _student.email = email;
   wx.setStorageSync('student', _student);
   
   wx.showToast({
    title: res.data.msg,
    icon: 'success',
    duration: 2000,
    success: function () {
    setTimeout(function () {
     wx.reLaunch({
     url: '../myinfo/myinfo',
     })
    }, 2000)
    }
   })
   }
  },
  })
 }
 },

這里我們用下邊方法從student里只修改email的值。

//修改email
   var _student = wx.getStorageSync('student');
   _student.email = email;
   wx.setStorageSync('student', _student);

wx.setStorageSync(KEY,DATA)

將 data 存儲在本地緩存中指定的 key 中,會覆蓋掉原來該 key 對應的內容,這是一個同步接口。

wx.getStorageSync(KEY)

從本地緩存中同步獲取指定 key 對應的內容。

如有問題或補充,歡迎小伙伴們留言哦~期待與你一同學習,共同進步?。?!

以上所述是小編給大家介紹的微信小程序如何修改本地緩存key中單個數(shù)據(jù)詳解整合,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。

AI