sdk-h5-weixin.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199
  1. /**
  2. * 本模块封装微信浏览器下的一些方法。
  3. * 更多微信网页开发sdk方法,详见:https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/JS-SDK.html
  4. */
  5. import jweixin, {
  6. ready
  7. } from 'weixin-js-sdk';
  8. import $helper from '@/sheep/helper';
  9. import AuthUtil from '@/sheep/api/member/auth';
  10. let configSuccess = false;
  11. export default {
  12. // 判断是否在微信中
  13. isWechat() {
  14. const ua = window.navigator.userAgent.toLowerCase();
  15. // noinspection EqualityComparisonWithCoercionJS
  16. return ua.match(/micromessenger/i) == 'micromessenger';
  17. },
  18. isReady(api) {
  19. jweixin.ready(api);
  20. },
  21. // 初始化 JSSDK
  22. async init(callback) {
  23. if (!this.isWechat()) {
  24. $helper.toast('请使用微信网页浏览器打开');
  25. return;
  26. }
  27. // 调用后端接口,获得 JSSDK 初始化所需的签名
  28. const url = location.href.split('#')[0];
  29. const {
  30. code,
  31. data
  32. } = await AuthUtil.createWeixinMpJsapiSignature(url);
  33. if (code === 0) {
  34. jweixin.config({
  35. debug: false,
  36. appId: data.appId,
  37. timestamp: data.timestamp,
  38. nonceStr: data.nonceStr,
  39. signature: data.signature,
  40. jsApiList: ['chooseWXPay', 'openAddress', 'checkJsApi',
  41. 'scanQRCode'], // TODO 非繁人:后续可以设置更多权限;
  42. openTagList: data.openTagList
  43. });
  44. }
  45. console.log('appdata:', data)
  46. // 监听结果
  47. configSuccess = true;
  48. jweixin.error((err) => {
  49. configSuccess = false;
  50. console.error('微信 JSSDK 初始化失败', err);
  51. // $helper.toast('微信JSSDK:' + err.errMsg);
  52. });
  53. jweixin.ready(() => {
  54. if (configSuccess) {
  55. console.log('微信 JSSDK 初始化成功');
  56. }
  57. })
  58. jweixin.checkJsApi({
  59. jsApiList: ['openAddress'], // 需要检测的JS接口列表,所有JS接口列表见附录2,
  60. success: function(res) {
  61. // 以键值对的形式返回,可用的api值true,不可用为false
  62. // 如:{"checkResult":{"chooseImage":true},"errMsg":"checkJsApi:ok"}
  63. console.log(res)
  64. }
  65. });
  66. // 回调
  67. if (callback) {
  68. callback(data);
  69. }
  70. },
  71. //在需要定位页面调用 TODO 非繁人:未测试
  72. getLocation(callback) {
  73. this.isReady(() => {
  74. jweixin.getLocation({
  75. type: 'gcj02', // 默认为wgs84的gps坐标,如果要返回直接给openLocation用的火星坐标,可传入'gcj02'
  76. success: function(res) {
  77. callback(res);
  78. },
  79. fail: function(res) {
  80. console.log('%c微信H5sdk,getLocation失败:', 'color:green;background:yellow');
  81. },
  82. });
  83. });
  84. },
  85. //获取微信收货地址 TODO 非繁人:未测试
  86. openAddress(callback) {
  87. this.isReady(() => {
  88. console.log("ready? go!")
  89. jweixin.openAddress({
  90. success: function(res) {
  91. // $helper.toast('res', res);
  92. callback.success && callback.success(res);
  93. },
  94. fail: function(err) {
  95. // $helper.toast('res', err);
  96. callback.error && callback.error(err);
  97. console.log('微信H5sdk,openAddress失败,原因是:', err);
  98. },
  99. complete: function(res) {},
  100. });
  101. });
  102. },
  103. // 微信扫码 TODO 非繁人:未测试
  104. scanQRCode(callback) {
  105. this.isReady(() => {
  106. jweixin.scanQRCode({
  107. needResult: 1, // 默认为0,扫描结果由微信处理,1则直接返回扫描结果,
  108. scanType: ['qrCode', 'barCode'], // 可以指定扫二维码还是一维码,默认二者都有
  109. success: function(res) {
  110. callback(res);
  111. },
  112. fail: function(res) {
  113. console.log('%c微信H5sdk,scanQRCode失败:', 'color:green;background:yellow');
  114. },
  115. });
  116. });
  117. },
  118. // 更新微信分享信息 TODO 非繁人:未测试
  119. updateShareInfo(data, callback = null) {
  120. this.isReady(() => {
  121. const shareData = {
  122. title: data.title,
  123. desc: data.desc,
  124. link: data.link,
  125. imgUrl: data.image,
  126. success: function(res) {
  127. if (callback) {
  128. callback(res);
  129. }
  130. // 分享后的一些操作,比如分享统计等等
  131. },
  132. cancel: function(res) {},
  133. };
  134. // 新版 分享聊天api
  135. jweixin.updateAppMessageShareData(shareData);
  136. // 新版 分享到朋友圈api
  137. jweixin.updateTimelineShareData(shareData);
  138. });
  139. },
  140. // 打开坐标位置 TODO 非繁人:未测试
  141. openLocation(data, callback) {
  142. this.isReady(() => {
  143. jweixin.openLocation({
  144. //根据传入的坐标打开地图
  145. latitude: data.latitude,
  146. longitude: data.longitude,
  147. });
  148. });
  149. },
  150. // 选择图片 TODO 非繁人:未测试
  151. chooseImage(callback) {
  152. this.isReady(() => {
  153. jweixin.chooseImage({
  154. count: 1,
  155. sizeType: ['compressed'],
  156. sourceType: ['album'],
  157. success: function(rs) {
  158. callback(rs);
  159. },
  160. });
  161. });
  162. },
  163. // 微信支付
  164. wxpay(data, callback) {
  165. this.isReady(() => {
  166. jweixin.chooseWXPay({
  167. timestamp: data
  168. .timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
  169. nonceStr: data.nonceStr, // 支付签名随机串,不长于 32 位
  170. package: data.packageValue, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
  171. signType: data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
  172. paySign: data.paySign, // 支付签名
  173. success: function(res) {
  174. callback.success && callback.success(res);
  175. },
  176. fail: function(err) {
  177. callback.fail && callback.fail(err);
  178. },
  179. cancel: function(err) {
  180. callback.cancel && callback.cancel(err);
  181. },
  182. });
  183. });
  184. },
  185. };