jszip.min.js:13 Uncaught (in promise) Error: Can't read the data of 'export_data.json'. Is it in a supported JavaScript type (String, Blob, ArrayBuffer, etc) ?
时间: 2024-04-23 11:22:04 浏览: 379
这个错误的原因可能是你在使用JSZip库读取文件时,尝试读取一个不支持的数据类型。JSZip只支持读取字符串、Blob和ArrayBuffer等类型的数据。
你可以检查一下你的代码,看看是否正确地将文件数据转换为这些支持的类型,或者尝试使用其他支持的数据类型进行读取。另外,也可以检查一下文件路径是否正确,确保JSZip能够找到文件并正确读取它。
相关问题
bootstrap-table.min.js:10 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'total') at e.value (bootstrap-table.min.js:10:96895) at HTMLTableElement.<anonymous> (bootstrap-table.min.js:10:113747) at Function.each (jquery.min.js:2:2976) at S.fn.init.each (jquery.min.js:2:1454) at t.fn.bootstrapTable (bootstrap-table.min.js:10:113507) at building.js:33:33 value @ bootstrap-table.min.js:10 (anonymous) @ bootstrap-table.min.js:10 each @ jquery.min.js:2 each @ jquery.min.js:2 t.fn.bootstrapTable @ bootstrap-table.min.js:10 (anonymous) @ building.js:33 Promise.then (async) searchbuilding @ building.js:31 invokeWithErrorHandling @ vue.js:3700 invoker @ vue.js:1529 original_1._wrapper @ vue.js:8013
这个错误提示是在使用bootstrap-table时出现的。具体来说是在调用bootstrap-table的value函数时出现了错误,因为value函数要使用一个undefined的属性'total',导致了TypeError。建议检查代码,看看是否正确地使用了bootstrap-table相关的函数和参数,是否有缺失或者错误。另外,也可以检查一下数据源是否正确,是否缺失了'total'属性。
jquery-3.3.1.min.js:2 Uncaught TypeError: Cannot read properties of undefined (reading 'options') at _b27 (jquery.easyui.min.js:14878:33) at HTMLInputElement.<anonymous> (jquery.easyui.min.js:15249:1) at Function.each (jquery-3.3.1.min.js:2:2573) at w.fn.init.each (jquery-3.3.1.min.js:2:1240) at select (jquery.easyui.min.js:15248:11) at $.fn.combobox (jquery.easyui.min.js:15163:8) at HTMLDocument.<anonymous> (<anonymous>:29:13) at l (jquery-3.3.1.min.js:2:29375) at c (jquery-3.3.1.min.js:2:29677)
这个错误通常是由于 EasyUI 的某些组件没有正确引用所需的 jQuery 插件或 EasyUI 核心文件而引起的。请确保以下事项:
1. 确保在 EasyUI 核心文件之前引用了 jQuery 插件。
2. 确保在 EasyUI 组件文件之前引用了 EasyUI 核心文件。
3. 确保文件路径和文件名正确。
如果以上步骤都没能解决问题,请检查浏览器的开发者工具,看看是否有其他错误信息。
阅读全文