javascript加载txt文件
时间: 2023-08-14 20:05:09 浏览: 123
用html+javascript读写txt文件
4星 · 用户满意度95%
要在JavaScript中加载txt文件,可以使用XMLHttpRequest对象或Fetch API。下面是两个例子:
使用XMLHttpRequest对象:
```javascript
var xhr = new XMLHttpRequest();
xhr.open('GET', 'test.txt', true);
xhr.onreadystatechange = function() {
if (this.readyState === 4 && this.status === 200) {
console.log(this.responseText);
}
};
xhr.send();
```
在这个例子中,我们使用XMLHttpRequest对象发送一个GET请求来加载txt文件。当readyState属性等于4且status属性等于200时,我们可以通过responseText属性获取文件内容,并将其打印出来。
使用Fetch API:
```javascript
fetch('test.txt')
.then(response => response.text())
.then(data => console.log(data));
```
在这个例子中,我们使用Fetch API发送一个GET请求来加载txt文件。当我们获取到响应时,我们可以使用text()方法将其转换为文本格式,并将其打印出来。
阅读全文