收藏
回答

分享查看为空白

框架类型 问题类型 API/组件名称 终端类型 操作系统 微信版本 基础库版本
小程序 Bug open-type="share"和onShareAppMessage 客户端 6.6.7 1.9.94

无论button标签添加open-type=share还是onShareAppMessage,分享给朋友,朋友查看都是空白


回答关注问题邀请回答
收藏

3 个回答

  • Recart
    Recart
    2018-08-13

    button标签中添加open-type=share也是不起任何作用

    2018-08-13
    有用
    回复
  • 你过来啊🤞
    你过来啊🤞
    2018-08-13

    只是分享页面路径出去吧,没有带参数

    2018-08-13
    有用
    回复 2
    • Recart
      Recart
      2018-08-13

      button标签中添加open-type=share也是不起任何作用

      2018-08-13
      回复
    • 你过来啊🤞
      你过来啊🤞
      2018-08-13

      这个只是让这个button点击后可以和小程序右上角那个分享的功能一样,并没有携带参数出去,而且你这个界面给朋友打开后,onload里面肯定要有参数去加载吧

      2018-08-13
      回复
  • 2018-08-13

    空白不就是数据没加载?你的代码片段是假的吧

    2018-08-13
    有用
    回复 2
    • Recart
      Recart
      2018-08-13

      button标签中添加open-type=share也是不起任何作用

      2018-08-13
      回复
    • Recart
      Recart
      2018-08-13

      onShareAppMessage: function (ops) {


      if (ops.from === 'button') {

      // 来自页面内转发按钮

      console.log(ops.target)

      }

      return {

      title: this.data.name,

      desc: '',

      path: '/pages/goods/detail/detail?objectId=' + this.data.objectId,

      success: function (res) {

      // 转发成功

      console.log("转发成功:" + JSON.stringify(res));

      },

      fail: function (res) {

      // 转发失败

      console.log("转发失败:" + JSON.stringify(res));

      }

      }


      }

      参数肯定会带呀,带是不起作用,现在很郁闷




      2018-08-13
      回复
登录 后发表内容