跳转外部链接或者应用市场
2020-07-27 本文已影响0人
宏_4491
项目情景是要跳转安卓市场和ios市场
- h5 的话可以使用location.href="www.baidu.com"
- 小程序使用location.href 会报错
-
小程序只能用web-view来展示
1 先建立一个webView目录,在目录里创建一个webView.vue 文件
image.png
2 然后使用uni.navgateTo()去跳转页面
uni.navigateTo({
url:'/pages/webView/webView?url=https://itunes.apple.com/app/id1494256104'
})
3 在webView.vue 里面放一个web-view 标签 设置src=''传过来的地址"
<template>
<view>
<web-view :src="url"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url:""
}
},
onLoad(e) {
console.log(e)
this.url=e.url
}
}
</script>
<style>
</style>