TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
时间: 2023-11-08 08:54:04 浏览: 250
这个错误通常发生在 JavaScript 中,它是因为在严格模式下访问了 "caller"、"callee" 或 "arguments" 属性,或者尝试在严格模式下对这些属性进行调用。在严格模式下,这些属性被视为不安全的语言特性,因此不允许访问。要解决这个问题,你需要确保所有代码都不会在严格模式下访问这些属性,或者你可以考虑不使用严格模式。
相关问题
webuploader.fis.js:4920 Uncaught TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them
这个错误通常是在严格模式下访问 'caller', 'callee' 和 'arguments' 属性所导致的。这些属性只在非严格模式下可用,并且在严格模式下,试图访问它们会导致错误。解决这个问题的方法有两种:
1. 避免在严格模式下访问这些属性。您可以将代码中的严格模式去掉,或者避免在严格模式下使用那些需要访问这些属性的函数。
2. 使用其他方式获取相同的信息。例如,可以使用 Function.caller 属性来获取调用当前函数的函数,而不是使用 arguments.callee.caller 属性。同样的,可以使用 Function.apply 或 Function.call 方法来代替 arguments 对象。
下面是一个示例代码:
```
function foo() {
console.log(foo.caller);
}
foo(); // 输出调用 foo 函数的函数
// 或者使用以下代码代替 arguments 对象
function bar() {
console.log('arguments:', bar.arguments);
console.log('length:', bar.length);
}
bar(1, 2, 3); // 输出 arguments 和 length
```
请注意,如果您的代码中使用了第三方库或框架,并且它们在内部使用了 'caller', 'callee', 和 'arguments' 属性,那么您可能需要更新这些库或框架以避免这些错误。
TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functio
TypeError: 'caller', 'callee', 和 'arguments' 属性在严格模式下 JavaScript 函数中不可访问,这是因为这些属性通常用于内部函数调试和堆栈跟踪,但在严格模式下,为了防止安全漏洞和滥用,JavaScript 规定这些私有属性不应在正常代码中直接获取。
当你试图在严格模式(`'use strict';`)的函数上下文中获取这些属性时,浏览器会抛出这个错误。例如:
```javascript
(function() {
'use strict';
console.log(callStack()); // TypeError: callStack is not a function
})();
```
在这个例子中,`callStack()` 是一个不存在的函数,但由于是在严格模式下,尝试访问 `caller`, `callee`, 或 `arguments` 会触发错误。
阅读全文