1. <tfoot id='kOcec'></tfoot>

      <small id='kOcec'></small><noframes id='kOcec'>

    2. <legend id='kOcec'><style id='kOcec'><dir id='kOcec'><q id='kOcec'></q></dir></style></legend>
      <i id='kOcec'><tr id='kOcec'><dt id='kOcec'><q id='kOcec'><span id='kOcec'><b id='kOcec'><form id='kOcec'><ins id='kOcec'></ins><ul id='kOcec'></ul><sub id='kOcec'></sub></form><legend id='kOcec'></legend><bdo id='kOcec'><pre id='kOcec'><center id='kOcec'></center></pre></bdo></b><th id='kOcec'></th></span></q></dt></tr></i><div id='kOcec'><tfoot id='kOcec'></tfoot><dl id='kOcec'><fieldset id='kOcec'></fieldset></dl></div>
        <bdo id='kOcec'></bdo><ul id='kOcec'></ul>

    3. 使用 Phonegap 访问文件

      时间:2023-05-30
        <tbody id='AXGCm'></tbody>
      <tfoot id='AXGCm'></tfoot>

      1. <legend id='AXGCm'><style id='AXGCm'><dir id='AXGCm'><q id='AXGCm'></q></dir></style></legend>
      2. <i id='AXGCm'><tr id='AXGCm'><dt id='AXGCm'><q id='AXGCm'><span id='AXGCm'><b id='AXGCm'><form id='AXGCm'><ins id='AXGCm'></ins><ul id='AXGCm'></ul><sub id='AXGCm'></sub></form><legend id='AXGCm'></legend><bdo id='AXGCm'><pre id='AXGCm'><center id='AXGCm'></center></pre></bdo></b><th id='AXGCm'></th></span></q></dt></tr></i><div id='AXGCm'><tfoot id='AXGCm'></tfoot><dl id='AXGCm'><fieldset id='AXGCm'></fieldset></dl></div>

        <small id='AXGCm'></small><noframes id='AXGCm'>

          • <bdo id='AXGCm'></bdo><ul id='AXGCm'></ul>

              • 本文介绍了使用 Phonegap 访问文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                限时送ChatGPT账号..

                我正在尝试使用 Phonegap[cordova 1.7.0] 在 IOS 上处理文件.我阅读了如何访问文件并在电话间隙的 API 文档上阅读它们.但我不知道,当文件被读取时,它会被写入哪里?&如何在 iPhone 屏幕上输出文本、图像或文本包含的任何内容?

                I'm trying to work with files on IOS, using Phonegap[cordova 1.7.0]. I read how to access files and read them on the API Documentation of phone gap. But I don't know, when the file is read where will it be written ? & How can I output the text, image, or whatever the text is containing on the iPhone screen?

                这是我正在使用的代码:

                Here's the code I'm using:

                    function onDeviceReady() {
                    window.requestFileSystem(LocalFileSystem.PERSISTENT, 0, gotFS, fail);
                }
                
                function gotFS(fileSystem) {
                    fileSystem.root.getFile("readme.txt", null, gotFileEntry, fail);
                }
                
                function gotFileEntry(fileEntry) {
                    fileEntry.file(gotFile, fail);
                }
                
                function gotFile(file){
                    readDataUrl(file);
                    readAsText(file);
                }
                
                function readDataUrl(file) {
                    var reader = new FileReader();
                    reader.onloadend = function(evt) {
                        console.log("Read as data URL");
                        console.log(evt.target.result);
                    };
                    reader.readAsDataURL(file);
                }
                
                function readAsText(file) {
                    var reader = new FileReader();
                    reader.onloadend = function(evt) {
                        console.log("Read as text");
                        console.log(evt.target.result);
                    };
                    reader.readAsText(file);
                }
                
                function fail(evt) {
                    console.log(evt.target.error.code);
                }
                

                推荐答案

                这对我有用,以防万一有人需要它:

                That's what worked for me in case anyone needs it:

                function ReadFile() {
                  var onSuccess = function (fileEntry) {
                    var reader = new FileReader();
                    reader.onloadend = function (evt) {
                      console.log("read success");
                      console.log(evt.target.result);
                      document.getElementById('file_status').innerHTML = evt.target.result;
                    };
                    reader.onerror = function (evt) {
                      console.log("read error");
                      console.log(evt.target.result);
                      document.getElementById('file_status').innerHTML = "read error: " + evt.target.error;
                    };
                
                    reader.readAsText(fileEntry); // Use reader.readAsURL to read it as a link not text.
                  };
                
                  console.log("Start getting entry");
                  getEntry(true, onSuccess, { create: false });
                };
                

                这篇关于使用 Phonegap 访问文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:改变 UIStepper 的外观 下一篇:检测 iPhone 5 及其下方的任何 iOS 设备

                相关文章

                最新文章

              • <tfoot id='ODKCs'></tfoot>

                <legend id='ODKCs'><style id='ODKCs'><dir id='ODKCs'><q id='ODKCs'></q></dir></style></legend>
              • <small id='ODKCs'></small><noframes id='ODKCs'>

                  1. <i id='ODKCs'><tr id='ODKCs'><dt id='ODKCs'><q id='ODKCs'><span id='ODKCs'><b id='ODKCs'><form id='ODKCs'><ins id='ODKCs'></ins><ul id='ODKCs'></ul><sub id='ODKCs'></sub></form><legend id='ODKCs'></legend><bdo id='ODKCs'><pre id='ODKCs'><center id='ODKCs'></center></pre></bdo></b><th id='ODKCs'></th></span></q></dt></tr></i><div id='ODKCs'><tfoot id='ODKCs'></tfoot><dl id='ODKCs'><fieldset id='ODKCs'></fieldset></dl></div>
                      <bdo id='ODKCs'></bdo><ul id='ODKCs'></ul>