• Day 281/300 微信小程序 监听接口返回的数据后 动态赋值并展示


    (一)现状

    1、一开始使用的缓存+setTimeout,缺点是不知道什么时候回来;网络速度慢的时候,会有空白的情况,或者是需要连续发,不太好;

    2、想实现监听接口返回的数据后 动态赋值并展示的效果;

    还可以用 状态管理的方式,mobx-miniprogram

    (二)实现的代码

    1、app.ts

    // app.ts
    App<IAppOption>({
      globalData: {
        setting: 'prod', // prod  dev
      },
      // 监听全局变量变化
      watch: function (variate, method) {
        var obj = this.globalData;
        let val = obj[variate]; // 单独变量来存储原来的值
        Object.defineProperty(obj, variate, {
          configurable: false,
          enumerable: true,
          set: function (value) {
            val = value; // 重新赋值
            method(variate, value); // 执行回调方法
          },
          get: function () {
            // 在其他界面调用getApp().globalData.variate的时候,这里就会执行。
            return val; // 返回当前值
          }
        })
      },
      onLaunch() {
        const that = this
        // 登录
        wx.login({
          success: res => {
            // console.log('code---',res.code)
            if(!wx.getStorageSync("token")){
              wx.request({
                url: this.globalData.url + '/login',
                method: 'GET',
                data: {
                  "code":res.code
                },
                header: {
                  'content-type': 'application/json'
                },
                success (res) {
                  const response = res.data.data
                  const token = response && response.user_setting && response.user_setting.token || ''
                  const template = response && response.user_setting && response.user_setting.template || []
                  const balance = response && response.user_setting && response.user_setting.balance || []
                  that.globalData.template = template;
                  that.globalData.balance = balance;
                  wx.setStorageSync("token",token)
                  wx.setStorageSync("template",template)
                  wx.setStorageSync("balance",balance)
                }
              })
            }
          },
        })
    
      },
    })
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56

    2、首页

    
    Page({
      data: {
        balance: '',
      },
      watchCallBack(name: string, value: any) {
        // console.log('watchBack', name, value);
        if (name === 'balance') {
          this.setData({
            balance: value,
          });
        }
      },
      onLoad() {
        // @ts-ignore
        getApp().watch('balance', this.watchCallBack)
      },
      onReady() {
        
      },
      onShow() {
    
      },
    })
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25

    参考链接

    https://juejin.cn/post/7241101553712955451

  • 相关阅读:
    LeetCode --- 1431. Kids With the Greatest Number of Candies 解题报告
    Serverless 产品手册
    14.(vue3.x+vite)组件间通信方式之pinia
    【云原生之k8s】K8s 管理工具 kubectl 详解(二)
    Linux ALSA驱动之Control设备创建流程源码分析(5.18)
    你会用吗?——python中的super到底是干什么的?
    关于java语言中的多态(提醒大家仔细阅读红色字体部分,能帮助你理解“多态”)
    一幅长文细学CSS3
    《C++新经典》第15章 模板与泛型
    JAVA基础(二十七)——文件相关操作
  • 原文地址:https://blog.csdn.net/xinghuowuzhao/article/details/133384341