- 通过wx.getFileSystemManager() 把数据存入本地文件显示undefined?
let array = ['element1', 'element2', 'element3']; // Convert the array to a string let arrayString = JSON.stringify(array); const fs = wx.getFileSystemManager() // Write the string to a local file fs.writeFile({ filePath: `${wx.env.USER_DATA_PATH}/hello.txt`, data: arrayString, encoding: 'utf8', success(res) { console.log(res.data) }, fail(res) { console.error(res) } }) try { const res = fs.writeFileSync( `${wx.env.USER_DATA_PATH}/hello.txt`, arrayString, 'utf8' ) console.log(res) } catch(e) { console.error(e) } [图片][图片]
2023-08-09 - 小程序蓝牙获取的Arraybuffer语音数据怎么处理?
通过wx.createInnerAudioContext去实现播放,需要innerAudioContext 的src 属性的值, 想通过blob URL.createobjecturl 来进行 对 innerAudioContext.src 来进行赋值,但是微信小程序不支持blob 有什么方法可以处理这些语音数据实现播放,这些语音数据是实时传进来的,我创建了一个数组来一个往里面放一个 [图片]
2023-08-07 - 公司产品硬件设备可以实时录音,可以通过蓝牙连接用微信小程序实时播放吗?
公司产品硬件设备可以实时录音,可以通过蓝牙连接用微信小程序实时播放吗?
2023-08-03