我正在尝试开发一个需要解析文本文件的应用程序(远程托管或与应用程序捆绑在一起),并根据用户的标准向用户显示某些数据。 我一直试图找到有关如何解析文本文件的信息,但我找不到任何东西。
有人请帮忙吗?
提前多多感谢!
答案 0 :(得分: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();
}
}
在肘部附近但是应该工作