• html5跳转小程序wx-open-launch-weapp踩坑


    目前公众号还支持浮窗,于是需求出来了,浮窗一个H5,在H5中一键打开小程序,阅读文档得知,微信对公众号网页开发有开放标签,可以打开App或小程序,但是过程中遇到不少坑以下为记录爬坑。

    1.正常操作,公众号后台绑定域名
    2.引入weixin.js 目前是1.6.0版本
    3.调用wx.config 在openTagList中加入要使用的开放标签
    接下来坑来了,文档上使用示例如下

    贴在vue中 无法使用,排查发现是template标签的问题

    <div class="center" style=" 100%" ref="launchBtnHome">
          <wx-open-launch-weapp id="launch-btn" username="gh_xxxxxxxx" path="pages/index/index/index" ref="launchBtn">
            <script type="text/wxtag-template">
              <style>
                .jump-btn {
                  height: 44px;
                  line-height: 44px;
                  border: none;
                  font-size: 16px;
                  color: #ffffff;
                  
                  text-align: center;
                }
              </style>
              <div class="jump-btn">打开小程序</div>
            </script>
          </wx-open-launch-weapp>
        </div>

    这样基本功能就实现了,但是样式没法居中,在里面写的style很多不生效,最后解决方案是: 给开放标签外部套一个div 给div写样式,开放标签本身也可以通过ID选择器直接写样式, 至此开发完成,

    https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html#21

    来源:https://www.jb51.net/html5/754691.html

    此随笔或为自己所写、或为转载于网络。仅用于个人收集及备忘。

  • 相关阅读:
    然乌湖
    邦达 八宿
    芒康
    巴塘
    禾尼乡 所波大叔
    世界高城 理塘
    相克宗 藏民家
    骑行川藏--新都桥&塔公草原
    d 3
    D2
  • 原文地址:https://www.cnblogs.com/shy1766IT/p/14818036.html
Copyright © 2020-2023  润新知