[更新]增加微信测试模块

This commit is contained in:
Anyon 2018-03-17 12:12:00 +08:00
parent 7082e96157
commit 677953dbc2
2 changed files with 54 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Tools extends BasicAdmin
{
/**
* 网页授权测试
* @return mixed
* @return string
* @throws \think\Exception
* @throws \think\exception\PDOException
*/
@ -36,4 +36,15 @@ class Tools extends BasicAdmin
return $this->fetch('', ['fans' => $fans]);
}
/**
* JSSDK测试
* @return string
*/
public function jssdk()
{
$wechat = WechatService::wechat();
$options = $wechat->jsSign($this->request->url(true));
return $this->fetch('', ['options' => $options]);
}
}

View File

@ -0,0 +1,42 @@
<!DOCTYPE html>
<html>
<head>
<title>JSSDK签名验证测试</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link href="__STATIC__/mobile/library.min.css" rel="stylesheet">
<script src="__STATIC__/mobile/library.min.js"></script>
<script src="//res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script>wx.config(JSON.parse('{$options|json_encode|raw}'));</script>
</head>
<body>
<header style="padding: 35px 0">
<h1 style=" text-align: center;font-size: 34px;color: #3cc51f;font-weight:400;">JSSDK 功能测试</h1>
</header>
<div style="padding:15px">
<a id='show-alert' class="weui-btn weui-btn_primary weui-btn_disabled">调起摄像头扫码</a>
</div>
<script>
wx.error(function (err) {
$.toptip(err.errMsg, 360000, 'error');
});
wx.ready(function () {
$('#show-alert').removeClass('weui-btn_disabled').on('click', function () {
wx.scanQRCode({
needResult: 1,
scanType: ["qrCode", "barCode"],
success: function (res) {
$.toptip(res.resultStr, 'success');
}
});
});
});
</script>
</body>
</html>