作者 景龙
1 个管道 的构建 通过 耗费 1 秒

调试视频定位

@@ -168,6 +168,8 @@ @@ -168,6 +168,8 @@
168 168
169 <script> 169 <script>
170 $(function () { 170 $(function () {
  171 + // 分享标题
  172 + var title_title = $(document).attr('title');
171 // 分享简介 173 // 分享简介
172 wx.config({ 174 wx.config({
173 debug: false, 175 debug: false,
@@ -180,6 +182,32 @@ @@ -180,6 +182,32 @@
180 'onMenuShareTimeline', 182 'onMenuShareTimeline',
181 ] 183 ]
182 }); 184 });
  185 +// wx.ready(function () { //需在用户可能点击分享按钮前就先调用
  186 +// wx.onMenuShareAppMessage({
  187 +// title: '独角星球-'+title_title, // 分享标题朋友
  188 +// desc: $('.post_title').text(), // 分享描述
  189 +// link: $('.video_index_url').val(), // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  190 +// imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标
  191 +// type: '', // 分享类型,music、video或link,不填默认为link
  192 +// dataUrl: '', // 如果type是music或video,则要提供数据链接,默认为空
  193 +// success: function () {
  194 +// wx_Share();
  195 +// },
  196 +// });
  197 +// wx.onMenuShareTimeline({
  198 +// title: '独角星球-'+title_title, // 分享标题朋友圈
  199 +// desc: $('.post_title').text(),
  200 +// link: $('.video_index_url').val(), // 分享链接,该链接域名或路径必须与当前页面对应的公众号JS安全域名一致
  201 +// imgUrl: 'http://www.starplanet.cn/themes/simpleboot3_mobile/public/assets/images/cicon_01@2x.png', // 分享图标
  202 +// success: function () {
  203 +// // 用户点击了分享后执行的回调函数
  204 +// wx_Share();
  205 +// },
  206 +// });
  207 +// });
  208 +// wx.error(function (res) {
  209 +// // config信息验证失败会执行error函数,如签名过期导致验证失败,具体错误信息可以打开config的debug模式查看,也可以在返回的res参数中查看,对于SPA可以在这里更新签名。
  210 +// });
183 }); 211 });
184 212
185 //视频分享 213 //视频分享