小程序
小游戏
企业微信
微信支付
扫描小程序码分享
4 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
得使用原生组件 wx-button
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
<wx-button
openType="getUserInfo"
onGetUserInfo={(res) => {
console.log(res.detail);
}}
>
点击授权
</wx-button>
<wx-button open-type="getUserInfo" @getuserinfo="bindGetUserInfo"></wx-button> methods: { bindGetUserInfo (e) { console.log(e.detail.userInfo) } }
大佬最后是怎么解决的啊,用了原生组件最后没有触发到bindgetuserinfo
button 标签不会被渲染成 button 内置组件,可使用 wx-component 或 wx- 前缀;如果使用 wx-component 标签表示要渲染小程序内置组件,然后 behavior 字段表示要渲染的组件名;其他组件属性传入和官方文档一致,注意:事件要采用 vue 的绑定方式。
wx-component
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
得使用原生组件 wx-button
<wx-button
openType="getUserInfo"
onGetUserInfo={(res) => {
console.log(res.detail);
}}
>
点击授权
</wx-button>
<wx-button open-type="getUserInfo" @getuserinfo="bindGetUserInfo"></wx-button> methods: { bindGetUserInfo (e) { console.log(e.detail.userInfo) } }
大佬最后是怎么解决的啊,用了原生组件最后没有触发到bindgetuserinfo
button 标签不会被渲染成 button 内置组件,可使用 wx-component 或 wx- 前缀;如果使用
wx-component
标签表示要渲染小程序内置组件,然后 behavior 字段表示要渲染的组件名;其他组件属性传入和官方文档一致,注意:事件要采用 vue 的绑定方式。