作者 jinglong
1 个管道 的构建 通过 耗费 0 秒

调试分享

@@ -520,9 +520,5 @@ class LoginController extends HomeBaseController @@ -520,9 +520,5 @@ class LoginController extends HomeBaseController
520 $postModel->where('id', $article_id)->setInc('post_share_wx', 1); 520 $postModel->where('id', $article_id)->setInc('post_share_wx', 1);
521 $this->apiResponse(1, '分享成功!'); 521 $this->apiResponse(1, '分享成功!');
522 } 522 }
523 -  
524 - public function wx_share_mobile(){  
525 - $data = $this->wxShare();  
526 - return $this->apiResponse(1,'成功',$data);  
527 - } 523 +
528 } 524 }
@@ -273,9 +273,9 @@ $(function() { @@ -273,9 +273,9 @@ $(function() {
273 }); 273 });
274 274
275 //微信分享 275 //微信分享
276 - // $('#wx_share,#wx_share_video').click(function(){  
277 - // mask('打开微信,点击右上角即可分享网页');  
278 - // }); 276 + $('#wx_share,#wx_share_video').click(function(){
  277 + mask('打开微信,点击右上角即可分享网页');
  278 + });
279 }); 279 });
280 //第三方分享 280 //第三方分享
281 function thirdShare(url){ 281 function thirdShare(url){
@@ -15,35 +15,32 @@ @@ -15,35 +15,32 @@
15 'updateTimelineShareData', 15 'updateTimelineShareData',
16 ] 16 ]
17 }); 17 });
18 - $('#wx_share').click(function(){  
19 - wx.ready(function () { //需在用户可能点击分享按钮前就先调用  
20 - wx.updateAppMessageShareData({  
21 - title: title_title, // 分享标题  
22 - desc: url, // 分享描述  
23 - link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致  
24 - imgUrl: '', // 分享图标  
25 - success: function (e) {  
26 - alert('成功');  
27 - wx_Share();  
28 - }  
29 - });  
30 - // wx.updateTimelineShareData({  
31 - // title: title_title, // 分享标题  
32 - // link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致  
33 - // imgUrl: '', // 分享图标  
34 - // success: function () {  
35 - // // 设置成功  
36 - // wx_Share();  
37 - // alert('cheng')  
38 - // }  
39 - // });  
40 - });  
41 - wx.error(function (res) {  
42 - // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。 18 + // wx.ready(function () { //需在用户可能点击分享按钮前就先调用
  19 + wx.updateAppMessageShareData({
  20 + title: title_title, // 分享标题
  21 + desc: url, // 分享描述
  22 + link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  23 + imgUrl: '', // 分享图标
  24 + success: function (e) {
  25 + alert('成功');
  26 + wx_Share();
  27 + }
43 }); 28 });
  29 + // wx.updateTimelineShareData({
  30 + // title: title_title, // 分享标题
  31 + // link: url, // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  32 + // imgUrl: '', // 分享图标
  33 + // success: function () {
  34 + // // 设置成功
  35 + // wx_Share();
  36 + // alert('cheng')
  37 + // }
  38 + // });
  39 + // });
  40 + wx.error(function (res) {
  41 + // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
44 }); 42 });
45 43
46 - });  
47 44
48 function wx_Share(){ 45 function wx_Share(){
49 var article_id = getUrlParam('id'); 46 var article_id = getUrlParam('id');