从网上搞到一个前端插件包,使用时报错 “globalThis is no defined”
,更换浏览器问题消失,查到原因可能是因为打包被编译出来的,不兼容低版本浏览器。
在代码中加入以下可解决
<script>
! function (t) {
function e() {
var e = this || self;
e.globalThis = e, delete t.prototype._T_
}
"object" != typeof globalThis && (this ? e() : (t.defineProperty(t.prototype, "_T_", {
configurable: !0,
get: e
}), _T_))
}(Object);
</script>