Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 PhoneGap 2.0 API 编写一个 iOS 应用程序。
我正在使用 FileReader() 类尝试读取大小为 139KB 的文件的内容,但它在读取文件的过程中大约完成了一半,然后 XCode 和模拟器崩溃了。有没有更好的方法来存储这些数据或读取文件?
文件中存储的数据当前为 JSON 格式。
谢谢
我有这个问题 - 添加
reader.onerror= function(evt) {console.log(evt.target.error.code);} reader.error= function(evt) {console.log(evt.target.error.code);}
并且不再崩溃需要很长时间 - 不确定这是否是调试器写入控制台?