uniapp小程序内点击某个按钮跳转另外一个小程序连接,具体实现步骤如下:
<view class="home-Item" @click="goNativeindex"> <image class="home-Item-img" src="../../static/images/icon1.png" mode=""></image> <view class="home-Item-name">水费缴纳</view> </view>
goNativeindex(){ uni.navigateToMiniProgram({ appId:'wxd2ade0f25a874ee2',// 此为生活缴费appid path:'main/pages/nativeindex/nativeindex',// 此为生活缴费首页路径 envVersion:"release", success: res => { // 打开成功 console.log("打开成功", res); }, fail: err => { console.log(err); } }) }
好啦,完成啦!~
需要记住的是,需要填写另外一个小程序的AppID哦!~
标签:nativeindex,uniapp,微信,跳转,程序,res From: https://www.cnblogs.com/anna001/p/16815454.html