官方文档
React中实践参考
第一步,引入官方文档的js:
<DynamicScript url = {`https://res2.wx.qq.com/open/js/jweixin‐1.6.0.js`}
onLoadHandle={this.onWxLoadHandle}
>
</DynamicScript>
第二步,初始化和格式化:
wxConfigHandle = (configData)=>{
let self = this;
try{
wx.config({
debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若
要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: configData.appId, // 必填,公众号的唯一标识
timestamp: configData.timestamp, // 必填,生成签名的时间戳
nonceStr: configData.nonceStr, // 必填,生成签名的随机串
signature: configData.signature,// 必填,签名
jsApiList: ['updateAppMessageShareData', 'onMenuShareTimeline',
'hideMenuItems'],// 必填,需要使用的JS接口列表
openTagList: ['wx‐open‐launch‐weapp']
});
wx.ready(function(){
// config信息验证后会执行ready方法,所有接口调用都必须在config接口获得结果之
后,config是一个客户端的异步操作,所以如果需要在页面加载时就调用相关接口,则须把相关接口放在
ready函数中调用来确保正确执行。对于用户触发时才调用的接口,则可以直接调用,不需要放在ready函数
中。
wx.hideMenuItems({
menuList: ['menuItem:share:appMessage', 'menuItem:share:timeline',
'menuItem:share:qq', 'menuItem:share:weiboApp',
'menuItem:favorite', 'menuItem:share:facebook',
'menuItem:share:QZone',
'menuItem:originPage', 'menuItem:openWithQQBrowser',
'menuItem:copyUrl',
'menuItem:openWithSafari', 'menuItem:share:email',
'menuItem:share:brand',
]
});
// gh_xxxxxxx
// pages/index/index.html
self.setState({
wxTag: `<wx‐open‐launch‐weapp
id="launch‐btn"
username="gh_xxxxxxx"
path="pages/index/index.html"
>
<template>
<style>.btn { padding: 12px;}</style>
<button class="btn">打开小程序</button>
</template>
</wx‐open‐launch‐weapp>`
})
});
}catch (e){
}
}
第三步,页面加载:
<div dangerouslySetInnerHTML={{__html: wxTag}} />