第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機(jī)立即綁定

《仿盒馬》app開發(fā)技術(shù)分享-- 注銷賬號恢復(fù)(85)

標(biāo)簽:
鴻蒙 HarmonyOS

技术栈

Appgallery connect

开发准备

上一节我们实现了欢迎页的逻辑,并且在欢迎页面实现了对账号状态的提示,但是如果我们的用户之前因为一些原因注销了账号,但现在又想用回我们的应用怎么办?我们这一节就要在注销账号的提示弹窗处,实现一个账号恢复功能,使我们的用户可以继续使用我们的应用

功能分析

要实现账号恢复,首先我们需要在注销弹窗的事件出实现页面的跳转,在新页面里,我们通过修改用户当前账号的状态来实现,当然了,我们也需要在里边添加一些恢复的说明,避免引起不必要的麻烦

代码实现

首先我们实现账号恢复的ui页面,创建好等会要使用的变量

 @State message: string = '提示语句';
  @State acc:string = ''
  @State psw:string = ''

 CommonTopBar({ title: "账号恢复", alpha: 0, titleAlignment: TextAlign.Center ,backButton:true})
      Text(this.message)
        .border({width:1,color:Color.Black})
        .borderRadius(15)
        .margin({left:15,right:15})
        .fontColor(Color.Black)
        .padding(10)

        .fontSize(16)
        .fontWeight(FontWeight.Bold)
      Column() {
        TextInput({text:this.acc,
          placeholder: '请输入注销前的账号'
        })
          .backgroundColor("#f6f6f6")
          .placeholderColor("#ff999595")
          .fontColor("#333333")
          .maxLength(11)
          .type(InputType.Number)
          .onChange((value: String) => {
            this.acc = value.toString()
          }).margin(20)

        TextInput({text:this.psw,
          placeholder: '请输入注销前的密码'
        })
          .backgroundColor("#f6f6f6")
          .placeholderColor("#ff999595")
          .fontColor("#333333")
          .type(InputType.Password)
          .onChange((value: String) => {
            this.psw = value.toString()
          }).margin(20)


然后我们来实现点击账号恢复的业务逻辑,在点击账号恢复时,我们先要根据用户输入的账号密码校验准确性

 let databaseZone = cloudDatabase.zone('default');

              let condition = new cloudDatabase.DatabaseQuery(user);
              condition.equalTo("user_name",this.acc).and().equalTo("psw",this.psw)
              let listData = await databaseZone.query(condition);
              let json = JSON.stringify(listData)
              let data1:User[]= JSON.parse(json)

当用户输入的账号密码准确,我们紧接着修改账号状态,并且跳转到首页

 let userInfo = new user();
                userInfo.id=data1[0].id
                userInfo.user_id=data1[0].user_id
                userInfo.user_name=data1[0].user_name
                userInfo.psw=data1[0].psw
                userInfo.is_vip=false
                userInfo.user_code=data1[0].user_code;
                userInfo.is_log_off=false
                let num = await databaseZone.upsert(userInfo);
                if (num>0) {
                  showToast("账号恢复成功")
                  router.replaceUrl({ url: 'pages/Index' });
                }

完整方法


        Row() {
          Text('账号恢复')
            .fontColor(Color.White)
            .fontSize(18)
            .backgroundColor("#ffe74141")
            .padding(10)
            .borderRadius(10)
            .onClick(async ()=>{
              let databaseZone = cloudDatabase.zone('default');

              let condition = new cloudDatabase.DatabaseQuery(user);
              condition.equalTo("user_name",this.acc).and().equalTo("psw",this.psw)
              let listData = await databaseZone.query(condition);
              let json = JSON.stringify(listData)
              let data1:User[]= JSON.parse(json)
              if (data1.length>0) {
                let userInfo = new user();
                userInfo.id=data1[0].id
                userInfo.user_id=data1[0].user_id
                userInfo.user_name=data1[0].user_name
                userInfo.psw=data1[0].psw
                userInfo.is_vip=false
                userInfo.user_code=data1[0].user_code;
                userInfo.is_log_off=false
                let num = await databaseZone.upsert(userInfo);
                if (num>0) {
                  showToast("账号恢复成功")
                  router.replaceUrl({ url: 'pages/Index' });
                }
              }



            })

        }
        .width('100%')
        .justifyContent(FlexAlign.Center)

到这里我们就实现了账号的恢复功能

點(diǎn)擊查看更多內(nèi)容
TA 點(diǎn)贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進(jìn)行掃碼打賞哦
今天注冊有機(jī)會得

100積分直接送

付費(fèi)專欄免費(fèi)學(xué)

大額優(yōu)惠券免費(fèi)領(lǐng)

立即參與 放棄機(jī)會
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消