写一个springboot前端调用wx.login()的完整的html页面
时间: 2024-06-08 15:12:08 浏览: 175
以下是一个简单的 HTML 页面,它包含一个按钮,当用户点击该按钮时,它会调用微信小程序的 wx.login() 方法。
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>调用 wx.login()</title>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
</head>
<body>
<button id="loginBtn">点击登录</button>
<script>
wx.config({
// 配置微信接口参数
debug: false,
appId: '你的AppID',
timestamp: '时间戳',
nonceStr: '随机字符串',
signature: '签名',
jsApiList: ['login']
});
$('#loginBtn').click(function() {
wx.login({
success: function(res) {
console.log(res.code); // 打印登录凭证
// 将 res.code 发送到后端,用于获取用户的 openid 和 session_key
}
});
});
</script>
</body>
</html>
```
注意:在使用该页面之前,需要先通过微信公众平台或者小程序开发平台获取到自己的 AppID,并且需要在页面中替换掉 `appId`、`timestamp`、`nonceStr` 和 `signature` 参数的值。
阅读全文