js中File对象转为字符串
时间: 2024-05-03 16:17:48 浏览: 134
json对象或数组对象转换成字符串
4星 · 用户满意度95%
可以使用FileReader对象将File对象转换为字符串。例如:
```javascript
const file = new File(['Hello, world!'], 'hello.txt', {type: 'text/plain'});
const reader = new FileReader();
reader.onload = function(event) {
console.log(event.target.result); // "Hello, world!"
};
reader.readAsText(file);
```
在上面的例子中,我们创建一个包含字符串“Hello, world!”的File对象,并使用FileReader对象将其转换为字符串。`readAsText()`方法将File对象读取为文本,并在`onload`事件处理程序中返回字符串。
阅读全文