赵一荣

Results 1 comments of 赵一荣

字节小程序目前不存在globalThis,下面是设置全局变量的解决方法: 该方法只在IDE环境可用,真机环境不可用,并且目前没有找到解决方法。 ```js if (typeof globalThis !== "object") { // TIP: 下方变量名不能设置为"globalThis" Object.defineProperty(Object.prototype, "globalThis_", { get() { return this; }, }); } globalThis_.xxx = xxx; ```