自学内容网 自学内容网

钉钉h5应用 globalthis is not defined vite client

钉钉h5应用 globalthis is not defined vite client

problem

背景

  • 钉钉h5应用
  • 使用 vue3 +vite 构建的前端工程

问题

  • h5页面在pc端浏览器和pc端钉钉打开正常
  • h5页面在移动端钉钉打开异常 页面空白

通过调试工具找到报错信息
globalthis is not defined vite client

在这里插入图片描述

reason

全局变量 globalthis 找不到

solution

在工程index.html中替换 globalthis

<script>
  console.log('jackie: globalThis=',globalThis)
  if (globalThis === undefined) {
    console.log('globalThis undefined')
    var globalThis = window;
  }
</script>

原文地址:https://blog.csdn.net/qubes/article/details/136482432

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!