读取文件时 android-phonegap 出错

发布于 2024-12-27 13:43:48 字数 433 浏览 0 评论 0原文

当我写入文件时,文件创建成功,但下次当我读取同一文件并移动到其他 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

单身情人 2025-01-03 13:43:48

我的猜测是这是异步函数调用的问题。对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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文