React开发-公众号H5跳转小程序

2020-07-15  本文已影响0人  sologuy

正需要H5跳转小程序的时候 前几天还在发愁怎么改产品, 这几天这个能力就来了, 因为很多人写的是Vue或者js中使用, React一直调试不同, 改了又改 终于通了

前提:

阅读微信官方对开放标签的开发文档: https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/Wechat_Open_Tag.html

createWeAppHtml() {
        return { __html: '<wx-open-launch-weapp id="launch-btn" username="gh_开头的小程序的原始id" path="/pages/index/index.html?userid=taihealthtest&roomid=120"><template><style>  .wx-btn {   color: #666; width: 100%; height:100%; display: block; text-aligin:center; }</style><button class="wx-btn">跳转小程序</button></template></wx-open-launch-weapp>' }
    }
render() {
   return (
        <div dangerouslySetInnerHTML={this.createWeAppHtml()}>
        </div>
    )
}
上一篇 下一篇

猜你喜欢

热点阅读