收藏
回答

wx-open-launch-weapp没有跳转按钮?

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <script src="http://res2.wx.qq.com/open/js/jweixin-1.6.0.js"></script>

  </head>

  <body>

    <h1>Hello World No.2</h1>

    <wx-open-launch-weapp id="launch-btn" weappid="gh_86a146d9c3e4" path="pages/index/index.html">

    <template>

    <style>.btn { padding: 12px }</style>

    <button class="btn">打开小程序</button></template>

    </wx-open-launch-weapp>

    <script>

        wx.config({

        debug: false, // 调试时可开启

        appId: ,

        timestamp: , // 必填,填任意数字即可

        nonceStr:// 必填,填任意非空字符串即可

        signature: , // 必填,填任意非空字符串即可

        jsApiList: ['onMenuShareTimeline'],

        openTagList: ['wx-open-launch-weapp']

      });

      wx.ready(function () {

                            var btn = document.getElementById('launch-btn');

                            btn.addEventListener('launch', function (e) {

                                alert("success");

                            });

                            btn.addEventListener('error', function (e) {

                                alert(e.detail);

                            });

                        });

                        wx.error(function (res) {

                            console.log('res', res);

                        });

    </script>

  </body>

</html>

用的是政府认证号但就是没有按钮显示,返回也是OK的

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

2 个回答

登录 后发表内容
问题标签