在uniapp中跳轉到外部頁面,可以使用uni.navigateToMiniProgram或uni.navigateTo方法。
uni.navigateToMiniProgram({
appId: '其他小程序的AppID',
path: '其他小程序的頁面路徑',
success: function () {
console.log('跳轉成功');
}
});
uni.navigateTo({
url: 'http://www.example.com',
success: function () {
console.log('跳轉成功');
}
});
以上兩種方法可以實現在uniapp中跳轉到外部頁面的功能,根據具體需求選擇合適的方法來實現跳轉。