如果我们想使用路由从自己的页面跳转的别人的页面,我们该怎么做,有两种方法

    1. window.location.href = 'https://xxxxx.com/'

    这个是窗口跳转

    1. this.$router.push('/home')
    2. this.$router.push({name:'home'})
    3. this.$router.push({path:'/home'})

    这些是通过在路由创建地址,进行访问,
    路由代码如下

    1. {
    2. path: '/consult',
    3. component: Layout,
    4. children: [{
    5. path: 'VaccinesSearch',
    6. name: '咨询',
    7. component: () => import('@/layout/components/VaccinesSearch')
    8. }]
    9. },

    如果我想引入别人的网页在自己的项目中,而且在别人的窗口中还能返回到自己的项目,那该怎么做?
    首先让我们看router的传参方法

    1. 1. 不带参数
    2. this.$router.push('/home')
    3. this.$router.push({name:'home'})
    4. this.$router.push({path:'/home'})
    5. 2. query传参
    6. this.$router.push({name:'home',query: {id:'1'}})
    7. this.$router.push({path:'/home',query: {id:'1'}})
    8. // html 取参 $route.query.id
    9. // script 取参 this.$route.query.id
    10. 3. params传参
    11. this.$router.push({name:'home',params: {id:'1'}}) // 只能用 name
    12. // 路由配置 path: "/home/:id" 或者 path: "/home:id" ,
    13. // 不配置path ,第一次可请求,刷新页面id会消失
    14. // 配置path,刷新页面id会保留
    15. // html 取参 $route.params.id
    16. // script 取参 this.$route.params.id
    17. 4. queryparams区别
    18. query类似 get, 跳转之后页面 url后面会拼接参数,类似?id=1, 非重要性的可以这样传, 密码之类还是用params刷新页面id还在
    19. params类似 post, 跳转之后页面 url后面不会拼接参数 , 但是刷新页面id 会消失

    由此可以得出,通过在原生界面调取url,

    1. link(url,title) {
    2. // window.location.href = url
    3. this.$router.push({path:'/consult/VaccinesSearch',query: {url,title}})
    4. }

    得到标题和地址,使用iframe框架捕捉外部网页

    1. <van-nav-bar left-text="返回" @click-left="returnn" :title="$route.query.title" >
    2. </van-nav-bar>
    3. <iframe style="width: 100%;height:2000px;border: none;overflow:auto;" :src='$route.query.url'></iframe>

    结果如图
    image.png