最近搜索

小程序 分享单页到朋友圈

浏览:598
管理员 2020-09-20 07:56
  onShareAppMessage: function (res) {
    return {
      title: '标题1111onShareAppMessage' //好友聊天窗口的标题
    } 
  },
  onShareTimeline: function (res) {
    return {
      title: '少年强则国强' ,//朋友圈标题
      query:"我是携带的参数"
    } 
  }



  onShareAppMessage: function () {
    var imageUrl = this.data.baseURL+this.data.blog_obj.imageUrl;
    var title = this.data.blog_obj.title;
    var blogId = this.data.blogId;
    return {
      title: title,
      path: 'pages/blog_view/blog_view?blogId=' + blogId,
      imageUrl: imageUrl,
      success: function (res) {
        console.log(res);
      },
      fail: function (res) {
        console.log(res);
      }
    }
  },
  onShareTimeline: function (res) {
    var imageUrl = this.data.baseURL+this.data.blog_obj.imageUrl;
    var title = this.data.blog_obj.title;
    var blogId = this.data.blogId;
    console.log(imageUrl);
    return {
      title: title,
      query: {
        blogId: blogId
      },
      imageUrl
    }
  }






image.png




联系站长

站长微信:xiaomao0055

站长QQ:14496453