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 at HTMLInputElement.<anonymous> (webuploader.fis.js:4920:40) at HTMLInputElement.dispatch (jquery.js:5135:27) at elemData.handle (jquery.js:4939:28)
时间: 2024-04-28 21:25:12 浏览: 144
Read data from the Excel spreadsheet.zip_Spreadsheet::Read_excel
这个错误是由于在严格模式下访问了 'caller', 'callee' 和 'arguments' 属性所致。这些属性只能在非严格模式下使用,因为它们会影响到函数的执行结果。建议您检查代码中使用了哪些函数,并且在使用时避免在严格模式下访问这些属性。您可以尝试将代码中的严格模式去掉或者将涉及到这些属性的代码进行修改。
阅读全文