小程序
小游戏
企业微信
微信支付
扫描小程序码分享
请问,
这个接口有例子吗?
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
简单给你个示例,实际使用可能需要根据你的游戏场景来:
const button = wx.createUserInfoButton({
type:
'text'
,
text:
'获取用户信息'
style: {
left: 10,
top: 76,
width: 200,
height: 40,
lineHeight: 40,
backgroundColor:
'#ff0000'
color:
'#ffffff'
textAlign:
'center'
fontSize: 16,
borderRadius: 4
}
})
function
onUserInfoButtonTapped(res){
console.log(
"user info button tapped"
, res);
button.offTap(onUserInfoButtonTapped); // 取消监听,下次点击就不会进入到这个函数来了
button.onTap(onUserInfoButtonTapped)
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
非常感谢 <笔芯>
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
简单给你个示例,实际使用可能需要根据你的游戏场景来:
const button = wx.createUserInfoButton({
type:
'text'
,
text:
'获取用户信息'
,
style: {
left: 10,
top: 76,
width: 200,
height: 40,
lineHeight: 40,
backgroundColor:
'#ff0000'
,
color:
'#ffffff'
,
textAlign:
'center'
,
fontSize: 16,
borderRadius: 4
}
})
function
onUserInfoButtonTapped(res){
console.log(
"user info button tapped"
, res);
button.offTap(onUserInfoButtonTapped); // 取消监听,下次点击就不会进入到这个函数来了
}
button.onTap(onUserInfoButtonTapped)
非常感谢 <笔芯>