请问vue如何获取微信用户的基本信息及用户图像?
网友回复
首先登录公众号后台,选择开发-》接口权限


然后找到网页账号 网页授权获取用户基本信息,点击修改,输入你代码运行的域名,不需要填http://或https://,比如baidu.com

确定后,我们来编写代码:
先写vue的代码,这个文件一定要放到上面填的域名下面运行,否则会报错的。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>获取微信用户基本资料</title>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/vue@2.6.1.js"></script>
<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/axios-0.18.js"></script>
</head>
<body>
<script type="text/javascript">
var app = new Vue({
el: '#app',
mounted() {
if (!window.localStorage.getItem('openId')) {
// 如果缓存localStorage中没有微信openId,则需用code去后台获取
this.getCode()
} else {
alert("openid为"+window.localStorage.getItem('openId'));
// 别的业务逻辑
}
},
methods: {
getCode () {
// 非静默授权,第一次有弹框
this.code = ''
var local = window.location.href // 获取页面url
var appid = 'wxac8d6782856ea0f7'
this.code = this.getUrlCode().code // 截取code
if (this.code == null || this.code === '') {
// alert(local);
// 如果没有code,则去请求
var url = `https://open.weixin.qq.com/connect/oauth2/authorize?appid=${appid}&redirect_uri=${encodeURIComponent(local)}&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect`;
...点击查看剩余70%
未来手机或电脑无应用,全部内置ai,ai实时生成ui界面帮你干活?
标准拉丁字母a与俄文西里尔a看上去一样却不相等?
CodeGraph与RTK(Rust Token Killer)有啥区别?
python如何将svg图标转换成png图片?
windows如何设置让多个人同时远程桌面连接同一台电脑同时可操作不被踢出?
什么是WebRCD技术?
如何在centos的服务器docker上安装运行微信qq?
如何用ai图片模型祛除图片油腻感?
google的gemini-omni多模态大模型在哪可以免费体验?
google的Antigravity 、Antigravity CLI、Antigravity IDE、Antigravity SDK有啥区别不同?


