多数原因:
- 在debugger调试模式下,我们经常会打印诸多的东西,来查看结果是否正确,在debugger模式下正常,却在非debugger模式下出现异常
解决方案:
- 删除多余的console.log()
- 或者在项目最初始添加:
if (!__DEV__) { global.console = { log: () => { }, warn: () => { }, info: () => { }, }; }
__DEV__为开发环境 来添加上述代码,验证是不是因为添加了多余的console.log() 造成的;
来源:CSDN
作者:撸铁的程序员
链接:https://blog.csdn.net/Wcharles666/article/details/104108240