繁体   English   中英

本地html加载txt文件

[英]local html load txt file

所以我正在使用本地html和javascript文件作为视频文件的gui。 这几乎是我的服务器index.php的外卖版本,它们可以在其他地方使用。 一切正常,但我正在尝试从txt文件加载内容。 我的网络服务器使用XMLHttpRequest来检索它,因为它是服务器端。 但是由于外卖版本不在服务器上,因此文本文件与html文件位于同一本地目录中

function loadBookmarks(){
  var infoDoc = new XMLHttpRequest()
  infoDoc.open("GET","info.bk");
  infoDoc.send();
  infoDoc.onreadystatechange = function() {
    if (infoDoc.readyState== 4 && infoDoc.status == 200) {
        document.getElementById("bookmarks").querySelector('p').innerHTML = infoDoc.responseText;
        document.getElementById("infoButton").style.backgroundColor = "#119933";
    } else {
        document.getElementById("bookmarks").querySelector('p').innerHTML = "";
        document.getElementById("infoButton").style.backgroundColor = "#993333"
    }
 }  
}

那就是我正在使用的功能。 还有另一种方法可以使用非服务器离线javascript文件从文件中获取文本吗?

米切尔

这是一种解决方法,涉及一些约束,但根据您的目标,可能会满足您的需求。 或不。

AFAIK您将无法使用XmlHttpRequest实现此目的,但可以使用FileReader加载文件。 您可以在此SO中找到一个有效的示例

如何使用Javascript打开本地磁盘文件?


缺点是FileReader必须从手动交互中触发。 因此,如果没有用户(YOU)单击并浏览要加载的文件,您将无法加载文件。

你能应付吗?

如果是这样,那就更糟了,因为一旦加载完毕,只需将文件内容放入localeStorage中即可,因此下次加载页面或刷新页面时,文件中的数据可能来自localeStorage ,您无需手动选择要再次加载的文件。 当然,如果文件已更改,但您不在服务器/ Web服务器上,则文件自动更改的可能性很小。 因此,我想如果您必须手动更改文件,则还可以接受另一种手动干预。

https://developer.mozilla.org/zh-CN/docs/Web/API/Window/localStorage


如果还不是您的选择,请考虑在文件和localeStorage中使用JSON格式的文本,它可以简化您的数据转换。


[编辑]当然,如果您的文件永不改变,只需将数据嵌入到javascript变量中即可。

[EDIT 2]示例

<body>
    <!-- The input widget to select a file from browse -->
    <input type="file" id="file-input" />

    <!-- testing purpose only, a markup to display the loaded file content -->
    <h3>Loading a file:</h3>
    <pre id="file-content"></pre>
    <script>

    // Place a listener to know when the page is loaded
    window.addEventListener('load',function(e){
      // If there is some persistent data on the browser called 'stored_data'
      if( localStorage.getItem('stored_data')){
        // We can do something with this data
        // without asking a user interaction at first
        // User interaction could be done in order to refresh the data ( file changed since storing in browser cache )
        doSomethingWithFileContents();
      }
    });

    /**
     * This is the callback of the addEventListener, it will be executed each time user select a file
     * It's linked below, on the addEventListener call
     */
    function readSingleFile(e) {
      //retrieve the first selected file the user has select
      var file = e.target.files[0];

      // If no file selected, abort this function execution
      if (!file) {
        return;
      }
      // If a file is selected, create a new file reader
      var reader = new FileReader();

      // Define a callback to be run when the file will be loaded
      reader.onload = function(e) {

        // You can still use some console.log for debugging purpose
        //console.log(e);

        // Retrive the content of the loaded file
        var contents = e.target.result;

        // To enable some persistency, store the contents into a localeStorage
        // It means next time you load the page, the data could come from the browser cache
        localStorage.setItem('stored_data', contents );

        // Will can now call the logic what we need to do with the file content
        doSomethingWithFileContents();
      };

      // Trigger the file reader to load the selected file
      reader.readAsText(file);
    }

    /**
     * This function will be executed when data is ready.
     * You should implements the logic that should be run with the file data
     *
     *  - Data is ready could mean:
     *      - Data was available through localStorage
     *      - Data has just been loaded through FileReader
     */
    function doSomethingWithFileContents() {

      // Retrieve the cached data
      var loadedData = localStorage.getItem('stored_data');

      // Get the element that will display the raw data
      var element = document.getElementById('file-content');
      // Set its content to the storedData
      element.textContent = loadedData;

      // Once again, I strongly recommend you to use JSON formatted value in the file
      // It will enable some easy transformation/parsing from js side


    }

    // Place a addEventListener on the file-input id element
    // When its value changed, run the readSingleFile function
    document.getElementById('file-input').addEventListener('change', readSingleFile, false);
</script>
</body>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM