收藏
回答

[logistics.onPathUpdate ] 云函数获取物流推送的数据这样写法 对不对 ?

// 云函数入口函数   

exports.main = async (event, context) => {

  const wxContext = cloud.getWXContext()

    

  db.collection("order").where({ _openid:wxContext.OPENID}).update({

      data:{

        event: event.MsgType,

      }

   });

 

  await cloud.openapi.customerServiceMessage.send({

    touser: wxContext.OPENID,

    msgtype: 'text',

    text: {

      content: '收到',

    },

  })


  return 'success'

}



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