钉钉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>
                


















