获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- readFile:fail http://usr/hello.txt not found"
const fs = wx.getFileSystemManager() fs.readFile({ filePath: `${wx.env.USER_DATA_PATH}/hello.txt`, encoding: 'utf8', position: 0, success(res) { console.log(res.data) }, fail(res) { console.error(res) } })
2023-10-22 - 小程序模板自带的那个多人聊天功能可以定时开启和关闭吗?可以禁id吗?
就是能不能设定在一天内某个时间段这个多人聊天的功能可以使用,其他时间不能使用。 还有就是能不能禁止某个人在聊天室内发言
2021-01-25