- 客户端用云开发数据库,总是不成功
- 当前 Bug 的表现(可附上截图) 不论是对数据库进行add、get、update都报同样的错误,但是我在云数据库上建了这个集合。 WAService.js:1 Uncaught (in promise) Error: errCode: -502005 database collection not exists | errMsg: [ResourceNotFound] Db or Table not exist. Please check your request, but if the problem cannot be solved, contact us. - 复现路径 - 提供一个最简复现 Demo wx.cloud.init({ // 此处请填入环境 ID, 环境 ID 可打开云控制台查看 env: 'test-nclxw', //env: 'dushi-one', traceUser: true, }) const db = wx.cloud.database(); db.collection(table).get().then(res => { this.setData({ docs:res.data }) }) const db = wx.cloud.database(); db.collection(doc.table).add({ data: { //id: doc.id, voice_file_id: res.fileID, voice_time: db.serverDate() } }).then(res => { console.debug('save voice id to db!', res.id, res.fieldID); }).catch(err=>{ console.error(err) });
2019-07-25 - 如何用云函数 开发 websocket应用
- 需求的场景描述(希望解决的问题) 通过websocket 建立长链接,提高响应及时性 - 希望提供的能力 云函数 可发websocket 服务功能
2019-07-18 - 如何用云函数 开发 websocket应用
如题,求教!
2019-07-18