首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

【微信小程序开发】使用button标签的open-type=getUserInfo引导用户去授权

一、 前言 小程序官方文档,上面说明 > wx.getUserInfo(OBJECT) 注意:此接口有调整,使用该接口将不再出现授权弹窗,请使用 > 引导用户主动进行授权操作 > 当用户未授权过,调用该接口将直接报错 当用户授权过,可以使用该接口获取用户信息 如上文,之前用户未授权过时,调用wx.getUserInfo会调出授权框...index.wxml <button     wx:if="{{canIUse}}"     open-type="getUserInfo"     bindgetuserinfo="bindGetUserInfo...canIUse: wx.canIUse('button.open-type.getUserInfo')   },   onLoad: function() {     // 查看是否授权     wx.getSetting...({       success: function(res){         if (res.authSetting['scope.userInfo']) {           wx.getUserInfo

1.6K10
  • 您找到你想要的搜索结果了吗?
    是的
    没有找到

    微信小程序官方组件展示之表单组件button源码

    使用前建议先阅读使用指引 1.2.0 getPhoneNumber 获取用户手机号,可以从 bindgetphonenumber 回调中获取到用户信息,具体说明 (*小程序插件中不能使用*) 1.2.0 getUserInfo...open-type="contact"时有效 1.5.0 app-parameter string 否 打开 APP 时,向 APP 传递的参数,open-type=launchApp时有效 1.9.5...="contact"时有效 1.5.0 bindgetuserinfo eventhandle 否 用户点击该按钮时,会返回获取到的用户信息,回调的 detail 数据与wx.getUserInfo...返回的一致,open-type="getUserInfo"时有效 1.3.0 bindcontact eventhandle 否 客服消息回调,open-type="contact"时有效 1.5.0...否 当使用开放能力时,发生错误的回调,open-type=launchApp时有效 1.9.5 bindopensetting eventhandle 否 在打开授权设置页后回调,open-type=

    80430
    领券