收藏
回答

微信小程序FileSystemManager.writeFile最多一次能写入多大的文件?

微信小程序FileSystemManager.writeFile最多一次能写入多大的文件?


writeFileJson(fileName = 'data', dataJson = '') {

const fs = wx.getFileSystemManager();

// 使用文件系统写入 JSON 文件

fs.writeFile({

filePath: `${wx.env.USER_DATA_PATH}/${fileName}.json`,

data: dataJson,

encoding: 'utf8',

success: () => {

console.log('数据已保存到文件系统');

},

fail: (err) => {

console.error('保存数据失败:', err);

}

});

},

回答关注问题邀请回答
收藏
登录 后发表内容