收藏
回答

为何调用onShareAppMessage没有生效

框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
小程序 Bug onShareAppMessage 微信安卓客户端 8.0.31 2.28.1
onShareAppMessage: function (res) {
    var that = this;
    if (res.from == 'button') {
        app.console(res.target)
    }
    return {
        title: that.data.info.name,
        path: '/pages/food/info?id=' + that.data.info.id,
        success: function (res) {
            // 转发成功
            wx.request({
                url: app.buildUrl("/member/share"),
                header: app.getRequestHeader(),
                method: 'POST',
                data: {
                    url: utils.getCurrentPageUrlWithArgs()
                },
                success: function (res) {
                    app.console('成功', res)

                }
            });
        },
        fail: function (res) {
            // 转发失败
            app.console('失败', res)
        }
    }
}
回答关注问题邀请回答
收藏

1 个回答

  • Hlxuan.
    Hlxuan.
    2022-12-23

    你是想问回调部分没有生效吗?

    2022-12-23
    有用
    回复 1
    • 袁鹏
      袁鹏
      2023-03-24
      是的,回调不起作用怎么办?
      2023-03-24
      回复
登录 后发表内容