支付宝小程序IDE环境目前globalThis为undefined,真机环境下是存在的,下面是个兼容的解决方法: ```js if (typeof globalThis !== 'object') { Object.defineProperty(Object.prototype, 'globalThis', { get() { return this } }) } ```
支付宝小程序IDE环境目前globalThis为undefined,真机环境下是存在的,下面是个兼容的解决方法: