uniapp使用fs
时间: 2023-07-11 11:11:26 浏览: 188
uni-app使用的演示
Uniapp 可以使用小程序的 API,包括小程序的 FileSystemManager。FileSystemManager 可以用于读写本地文件。以下是一个简单的使用 FileSystemManager 写入文件的示例:
```javascript
uni.getFileSystemManager().writeFile({
filePath: 'test.txt',
data: 'Hello, World!',
success: function(res) {
console.log('Write file success: ' + res.filePath);
},
fail: function(res) {
console.log('Write file failed: ' + res.errMsg);
}
});
```
这段代码将字符串 "Hello, World!" 写入文件 test.txt 中。如果操作成功,将在控制台输出文件的路径,否则输出错误信息。
你也可以使用 FileSystemManager 的 readFile 方法来读取本地文件。例如:
```javascript
uni.getFileSystemManager().readFile({
filePath: 'test.txt',
encoding: 'utf-8',
success: function(res) {
console.log('Read file success: ' + res.data);
},
fail: function(res) {
console.log('Read file failed: ' + res.errMsg);
}
});
```
这段代码将读取文件 test.txt 中的内容,并在控制台输出文件内容。如果操作成功,将输出文件内容,否则输出错误信息。
阅读全文