Babel7.x完美解决严格模式报错:'caller', 'callee', and 'arguments' properties may not be

Posted dasdfdfecvcx

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Babel7.x完美解决严格模式报错:'caller', 'callee', and 'arguments' properties may not be相关的知识,希望对你有一定的参考价值。

问题描述

做项目用到了MUI的scroll控件 故此我引入了mui.min.js
然而 猝不及防地报错了:

错误信息:

‘caller‘, ‘callee‘, and ‘arguments‘ properties may not be accessed on strict mode functions or the arguments objects for calls to them
1
原因

mui.js用到了’caller’, ‘callee’, 和 ‘arguments’
但webpack打包好的bundle.js默认是启用严格模式(strict mode)的
在严格模式下 不能使用’caller’, ‘callee’, 和 ‘arguments’
因此 这两者起了冲突 从而报错

解决方法

安装babel-plugin-transform-remove-strice-mode插件的办法在老版本的Babel是可以的
npm install babel-plugin-transform-remove-strict-mode
或是npm install @babel/plugin-transform-strict-mode
但在新版本的Babel中没用 依旧会报错

解决方法其实很简单:

在.balelrc中添加排除项 排除你的mui.js即可

"ignore": [
      "./src/lib/mui/js/mui.min.js"
    ]
1
2
3
解决了strict mode的问题之后 可能还会有个不影响使用的报错:

错误信息:

[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive.
1
虽说不影响使用 但不太美观 顺便解决一下吧
添加一个全局的样式即可:

* {
 touch-action: pan-y;
}
1
2
3
touch-action能够提高页面的流畅度(只有chrome支持)
pan-y样式的作用是启用单指垂直平移手势
即 单指在页面纵向滑动时 能提高页面的流畅度
————————————————
原文链接:https://blog.csdn.net/Piconjo/article/details/105880635

https://www.iqingren.com/User/9B2BC62D9101DD12.html

https://www.iqingren.com/User/BF6FF171E6347330.html

https://www.iqingren.com/User/DE64BCC3EFB05713.html

https://www.iqingren.com/User/C61B6C1CF85A53BE.html

https://www.iqingren.com/User/43CF2C9BBCC15720.html

 

以上是关于Babel7.x完美解决严格模式报错:'caller', 'callee', and 'arguments' properties may not be的主要内容,如果未能解决你的问题,请参考以下文章

在vue项目中 我引入外部js 但报错说在严格模式下删除局部变量,怎么解决,还有怎么能使用外部脚本

mysql导入文件报错:[Err] 1067 - Invalid default value for 'active_time'

谈谈我对严格模式的理解

严格模式

Cocos Creator 3.x解决`类型为 “xxx“ 的表达式不能用于索引类型 “{}“。`的报错

Incorrect datetime value: '0000-00-00 00:00:00' for column 'addtime' at row问题解决(示例代码