FileReader 从捆绑包中返回文件的空结果
我尝试使用phonegap的FileReader
类从应用程序包中读取文件:
...
loadFile: function (path, callback) {
fileReader = new FileReader();
fileReader.onerror = function () {
...
}
fileReader.onload = function (evt) {
callback(evt.target.result);
}
fileReader.readAsText("./www/" + path);
}
在此示例中,路径类似于“index.html”。 onerror
回调永远不会被调用。 onload
被调用,但 evt.target.result
为空。您有什么建议吗?通常是否可以使用phonegap API 从捆绑包中读取文件?我可以使用像“./www/foo.txt”这样的相对路径吗?
感谢您的回答!
I've tried to read a file from the app bundle using phonegap's FileReader
class:
...
loadFile: function (path, callback) {
fileReader = new FileReader();
fileReader.onerror = function () {
...
}
fileReader.onload = function (evt) {
callback(evt.target.result);
}
fileReader.readAsText("./www/" + path);
}
In this example path is something like "index.html". The onerror
callback is never called. onload
is called but evt.target.result
is empty. Do you have any suggestions? Is it in general possible to read files from the bundle with the phonegap API? Can I use relative paths like "./www/foo.txt"?
Thanks for your answers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
传递到
readAsText
的路径相对于应用程序沙箱中的“Documents”文件夹。因此,您必须通过替换该行来简单地修复路径才能
访问该文件。这对我有用。
The path that is passed into
readAsText
is relative to the "Documents" folder in the applications sandbox. Hence you have to simply fix the path by replacing the linewith
to access the file. This works for me.