微信小程序解决wx.getUserProfile is not a function 问题
Posted 2019ab
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序解决wx.getUserProfile is not a function 问题相关的知识,希望对你有一定的参考价值。
微信登录问题
第一步,把基础库设置成,2.16.0
第二步,清除所有缓存
第三步,重新加载编译程序
第四步,查看成功打印
参考代码
<template>
<view style="padding-top: 100upx;">
<button @click="newWxLogin">新登录</button>
</view>
</template>
<script>
export default
data()
return
,
methods:
newWxLogin()
uni.getUserProfile(
desc:'登录',
success:(res)=>
console.log(res);
,
fail:(err)=>
console.log(err);
)
</script>
<style>
</style>
感谢大家,观看我们下次见
以上是关于微信小程序解决wx.getUserProfile is not a function 问题的主要内容,如果未能解决你的问题,请参考以下文章