想做一个简单读写文本文件的功能,下面是目录结构,‘src/Game.ini’是要读写的文本文件。
在Page({...})里面,写的代码如下:
test(){
wx.getFileSystemManager().readFile({ //读取文件
filePath: '../../src/Game.ini',
encoding: 'utf-8',
success: res => {
console.log(res.data)
},
fail: console.error
})
}
但编译后得到的提示却是这个:
无法正常显示文本内容,由于我是新手,请高手指点的时候详尽一些,先谢谢了!
建议使用 json 试试
https://developers.weixin.qq.com/miniprogram/dev/framework/structure.html#%E5%85%81%E8%AE%B8%E4%B8%8A%E4%BC%A0%E7%9A%84%E6%96%87%E4%BB%B6