- wx.request的错误回调fail问题?
使用云托管wx.cloud.callContainer,文档说和wx.request用法一致 try{ const result = await wx.cloud.callContainer({ "config": {"env": ""}, "path": path, "header": { "X-WX-SERVICE": "", "content-type": "application/json" }, "method": method, "data": data, }); console.log(`微信云托管调用结果${result.errMsg} | callid:${result.callID}`) console.log(result) }catch(e){ //只要请求的接口返回状态码不是2xx都会进入fail const error = e.toString() console.log(error) throw new Error(`微信云托管调用失败${error}`) } 请求服务端接口时发现只要不是2xx的状态码都会进入fail,只有errno errmsg。 并没有像文档说的不管服务端接口返回什么状态码都会success。这是什么问题呢 [图片]
2024-12-06 - 云开发操作数据库失败,errMsg: Environment not found
const db = wx.cloud.database({env:'hello-cloudbase-4gsir4zo308dbb44'}) db.collection('pits').where({ _id: '0' }).get({ success: function (res) { console.log('[云函数] 返回数据结果: ', res) }, fail: err => { console.error('[云函数] 返回数据结果 调用失败', err) } }) [图片] 使用云函数可以操作成功,在小程序单独写就失败
2021-07-02