uniapp开发微信小程序获取用户基本信息以及手机号 uni.getUserProfile getPhoneNumber

首先获取用户信息以及手机号必须要通过button按钮点击实现

小程序登录、用户信息相关接口调整说明官方

一、获取用户信息(友情链接)

依据微信小程序开发文档描述,先写一个button按钮,open-type 设为 getUserProfile,在uniapp页面中创建按钮

          

在methods中:

    getUserProfile() {
      let that = this;
      if (uni.getUserProfile) {
        uni.getUs

你可能感兴趣的:(微信小程序,uniapp,小程序,uni-app,uview,vue)