Typescript给已有的库增加属性声明

开发Taro小程序的时候,想要挂在globalData到关键字Taro上,但是Typescript一直提示报错,因此采用下面的方法解决:
1、src路径下新建app-shim.d.ts
2、填入以下内容:

import Taro, { Component } from '@tarojs/taro'
declare module '@tarojs/taro' {
  interface Component {
    $api: any
  }
  let globalData: any
}

其中globalData为挂载的内容,而另一个$api是为了实现Component.prototype.$api = xxx而准备的。
至此,如果要在app.tsx里面初始化的时候对系统属性进行存储,就可以直接用下面的写法:

componentDidMount () {
    Taro.getSystemInfo({
      success: e => {
        Taro.globalData = {}
        Taro.globalData.StatusBar = e.statusBarHeight;
        let custom = wx.getMenuButtonBoundingClientRect();
        Taro.globalData.Custom = custom;  
        Taro.globalData.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
      }
    })
  }
上一篇:如何在HTML页面使用“session”


下一篇:微信小程序让某个方法在当前小程序使用过程中只执行一次,如首页启动广告