miniprogram-polyfill icon indicating copy to clipboard operation
miniprogram-polyfill copied to clipboard

小程序相关polyfill

Results 1 miniprogram-polyfill issues
Sort by recently updated
recently updated
newest added

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

help wanted
good first issue