uniapp-获取用户手机号
# 流程
小程序通过点击 button 获取 code 来跟后端换取手机号。
在开发者工具中无法获取到 code。真机预览中可以获取到。
# 案例
<template>
<button open-type="getPhoneNumber" @getphonenumber="getphonenumber">
获取用户手机号
</button>
</template>
<script>
export default {
methods: {
getphonenumber(e) {
let code = e.detail.code; //开发工具中无法获取到该code,用真机预览进行测试
//开发阶段可以设置剪贴板将code复制。便于跟后端对接调试。调试完成后记得删除。
uni.setClipboardData({
data: e.detail.code
});
}
}
};
</script>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
上次更新: 2024/08/14, 04:14:33