- 错误内容:
react项目在运行时,在Chrome上运行正常,但在QQ浏览器上页面内容空白,并且在控制台报jsonp chunk loading:42 Uncaught ReferenceError: globalThis is not defined
- 解决方法:
在index.html文件的头部加上如下代码:
<script> this.globalThis || (this.globalThis = this) </script>
react项目在运行时,在Chrome上运行正常,但在QQ浏览器上页面内容空白,并且在控制台报jsonp chunk loading:42 Uncaught ReferenceError: globalThis is not defined
在index.html文件的头部加上如下代码:
<script> this.globalThis || (this.globalThis = this) </script>