js 从指定路径读取文件
时间: 2023-10-01 19:06:49 浏览: 243
js 读取文件
在 JavaScript 中,可以使用 `XMLHttpRequest` 或 `fetch` API 从指定路径读取文件。以下是使用 `fetch` API 的示例:
```javascript
fetch('path/to/file.txt')
.then(response => response.text())
.then(data => {
console.log(data) // 输出文件内容
})
.catch(error => {
console.error('读取文件时出错:', error)
})
```
可以使用 `XMLHttpRequest` 的方式如下:
```javascript
const xhr = new XMLHttpRequest();
xhr.open('GET', 'path/to/file.txt');
xhr.onreadystatechange = function() {
if (xhr.readyState === 4 && xhr.status === 200) {
console.log(xhr.responseText); // 输出文件内容
}
};
xhr.send();
```
需要注意的是,这两种方式都是异步的,因此需要在回调函数中处理文件内容。同时还要注意跨域访问问题。
阅读全文