openTen(e){
const meetingCode = '会议码';
const password = '腾讯会议密码';
const channel = '从哪里跳转到腾讯会议小程序的';
const nickname = encodeURIComponent('入会昵称');
let path = `pages/index/index?chn=${channel}&code=${meetingCode}&pwd=${password}&nm=${nickname}`;
wx.navigateToMiniProgram({
appId: 'appId是要跳转到的腾讯会议小程序AppId',
path: path, // 跳转到的页面路径
extraData: {
},
envVersion: 'release', // 是指要打开的小程序的版本,默认为'release'
success(res) {
// 打开成功
console.log('打开成功',res)
},
fail(err) {
// 打开失败
console.log('打开失败',err)
console.error(`launch Tencent WeMeet Miniprogram failed: ${err.errMsg}`);
},
})
},
微信小程序对接腾讯小程序
最新推荐文章于 2025-05-17 12:45:37 发布