Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Ist die benutzerdefinierte Freigabe von WeChat jssdk nicht verfügbar?

debug:ok Das offizielle Konto ist auch ein Dienstkonto. Das Wichtigste ist, dass das WeChat-Entwicklertool korrekt angezeigt wird.

<script src='http://res.wx.qq.com/open/js/jweixin-1.0.0.js'></script>
<script>
    $.getJSON('获取data接口', function(data) {
        data.jsApiList = ['onMenuShareTimeline','onMenuShareAppMessage'];
        wx.config(data);
        wx.ready(function () {
            wx.showOptionMenu();
            wx.onMenuShareTimeline({
                title: '分享标题', // 分享标题
                link: '分享链接', // 分享链接
                imgUrl: '分享图标', // 分享图标
                success: function (res) {
                    alert(JSON.stringify(res));
                },
                cancel:function (res) {
                    alert(JSON.stringify(res));
                },
                fail: function (res) {
                    alert(JSON.stringify(res));
                }
            });

            wx.onMenuShareAppMessage({
                title: '分享标题', // 分享标题
                desc: '分享描述', // 分享描述
                link: '分享链接', // 分享链接
                imgUrl: '分享图标', // 分享图标
                success: function (res) {
                    alert(JSON.stringify(res));
                },
                cancel: function (res) {
                    alert(JSON.stringify(res));
                },
                fail: function (res) {
                    alert(JSON.stringify(res));
                }
            });

        });
    });
</script>
漂亮男人漂亮男人2733 Tage vor476

Antworte allen(1)Ich werde antworten

  • 阿神

    阿神2017-05-16 13:36:06

    wx.onMenuShareTimeline({
        title: '分享标题', // 分享标题
        link: '分享链接', // 分享链接
        imgUrl: '分享图标', // 分享图标
        success: function (res) {
            alert(JSON.stringify(res));
        },
        cancel:function (res) {
            alert(JSON.stringify(res));
        },
        fail: function (res) {
            alert(JSON.stringify(res));
        }
    });

    link 跟安全域名是同域名的吗?

    success, cancel, fail 回调执行的结果在手机上如何?


    之前我答过的跟你类似的问题
    /q/10...

    简直精彩。。。。 = =

    1. https://mp.weixin.qq.com/wiki...

    2. https://mp.weixin.qq.com/wiki...

    3. https://mp.weixin.qq.com/wiki

    Antwort
    0
  • StornierenAntwort