0

我正在尝试开发一个需要解析文本文件(远程托管或与应用程序捆绑在一起)并根据用户的标准向用户显示某些数据的应用程序。我一直在尝试查找有关如何解析文本文件的信息,但找不到任何东西。

有人可以在这里帮忙吗?

提前非常感谢!

4

1 回答 1

0

不确定这是您正在寻找的,但一种解决方案是使用 SystemXHR 请求:

var picktxt = document.querySelector("#pick-txt");
if (picktxt) {
    picktxt.onclick = function () {

    var xhr = new XMLHttpRequest();
    xhr.open('GET', 'txt/huckfinn.txt');
    xhr.responseType = 'text';
    xhr.onload = function() {                
        var newlines = this.responseText.split( "\n" );
        alert( newlines.length );
        alert( newlines[50] );
    };
    xhr.onerror = function() {
        console.log('Error reading txt file');
    };
    xhr.send();

    }
}

肘部有点,但应该可以

于 2013-11-12T22:02:55.857 回答