form表单提交发送模板消息如何能不用用户主动点击就默认发送模板消息,
现在必须得用户手动点击
form表单: https://developers.weixin.qq.com/miniprogram/dev/component/form.html
模板消息 : https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/template-message.html
<form bindsubmit="formSubmit" bindreset="formReset"
report-submit
=
"true"
>
<view class="btn-area">
<button form-type="submit">Submit</button>
</view></form>
Page({
formSubmit(e) {
console.log(e.detail.formId)
//这时才能从参数中获取 formId
//能不能 ?不用用户主动点击就默认发送模板消息 ?
},
})
发送不用点击 但是获取就必须要点击
必须用户主动触发
okok sky
不能, ( 获取用户权限, 分享等也是同理,不能主动触发的 )
谢谢啦,我知道了了