http://ww4.sinaimg.cn/large/a...
圖片麻煩大家自己點進去看下了(公司網絡實在太難了。。)
問題:想請教下不呼叫微信jssdk 的方式有沒有什麼辦法把紅色那塊簡介給改了圖片是微信內置網頁分享出來微信抓取的(個人感覺)標題是title 標籤的想問下有沒有什麼標籤可以設置了之後就可以更改過來!
巴扎黑2017-05-19 10:14:40
wx.ready(()=>{
let shareConf={
title: "优惠不容错过",
link: location.href,
imgUrl: this.cdnHost+this.results.logo,
success(result){
this.toast=true;
this.errmsg="确认分享";
},
cancel() {
this.toast=true;
this.errmsg="取消分享";
}
}
// 分享消息
wx.onMenuShareAppMessage(Object.assign(shareConf,{
desc: this.results.name,
type: 'link'
}));
// 分享到朋友圈
wx.onMenuShareTimeline(shareConf);
})