在云函数里写了调用:
async function send(event){
try {
const result = await cloud.openapi.subscribeMessage.send({
touser: event.openid,
templateId: event.formid,
page: 'pages/cup/cup',
data: {
thing1: {
value: event.thing1
},
thing2: {
value: event.thing2
},
thing4: {
value: event.thing4
}
},
miniprogramState: 'developer'
})
return result
} catch (err) {
return err
}
}
收到的消息没有page的调转项,page页是从app.jspn里粘贴过来的。
仔细看文档,page不是这么写的哈
直接写cup