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

分享

@@ -11,6 +11,7 @@ @@ -11,6 +11,7 @@
11 <h1>分享主题</h1> 11 <h1>分享主题</h1>
12 </body> 12 </body>
13 </html> 13 </html>
  14 +<script src="__TMPL__/public/assets/js/jquery-2.1.0.js"></script>
14 <script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script> 15 <script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
15 <script> 16 <script>
16 $(function () { 17 $(function () {
@@ -22,7 +23,7 @@ @@ -22,7 +23,7 @@
22 signature: '{$data.signature}', 23 signature: '{$data.signature}',
23 jsApiList: [ 24 jsApiList: [
24 'updateAppMessageShareData', 25 'updateAppMessageShareData',
25 - // 'updateTimelineShareData', 26 + 'updateTimelineShareData',
26 ] 27 ]
27 }); 28 });
28 wx.ready(function () { //需在用户可能点击分享按钮前就先调用 29 wx.ready(function () { //需在用户可能点击分享按钮前就先调用
@@ -33,7 +34,7 @@ @@ -33,7 +34,7 @@
33 imgUrl: '', // 分享图标 34 imgUrl: '', // 分享图标
34 success: function (e) { 35 success: function (e) {
35 // 设置成功 36 // 设置成功
36 - alert('分享朋友'); 37 + alert(e);
37 } 38 }
38 }) 39 })
39 }); 40 });