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;
      }
    })
  }
    原文作者:MichaelToLearn
    原文地址: https://blog.csdn.net/hezhongla0811/article/details/89486261
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞