读取文件时 android-phonegap 出错
当我写入文件时,文件创建成功,但下次当我读取同一文件并移动到其他 html 文件(使用 location.href='filename.html')时,它会显示以下错误:
JSCallback 错误:请求失败。
附加细节: 我创建了一个函数来检查 SD 卡中是否存在文件。如果文件存在于 sdcard 中,则它会读取文件的内容并在phoneGap的读取方法中导航到html文件,否则它会创建新文件,使用phonegap写入方法在该文件中写入数据并导航到html。
在 read 方法中,当我导航到该 html 文件并再次调用函数来检查文件是否存在时,它会调用 onload 事件 “document.addEventListener(“deviceready”, onDeviceReady, false);”只是永远不要继续
“JSCallback 错误:请求失败。”此错误显示在日志上。
When i write file, File created successfully, but next time when i read same file and move to other html file (using location.href='filename.html') it show following error:
JSCallback Error: Request failed.
Additional Detail:
I have created one function to check files are present in sdcard or not . If file is present in sdcard then it reads the content of file and navigate to html file in read method of phoneGap else it creates new file, write data in that file using phonegap write method and navigate to html.
In read method when i navigate to that html file and again call function to check file exists or not on onload event it call
"document.addEventListener("deviceready", onDeviceReady, false);" only never go ahead and
"JSCallback Error: Request failed." this error is display on log.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是这是异步函数调用的问题。对phonegap api的js调用是异步的,你需要等到回调被调用才能打开文件
My guess is this is an issue asynchronous function call. The js calls to phonegap apis are asyncchronous and you need to wait till your callback gets called to open the file