gpt4 book ai didi

vue.js - Vue2 使用 location.href 导航到外部 url

转载 作者:搜寻专家 更新时间:2023-10-30 22:08:55 25 4
gpt4 key购买 nike

我尝试使用 router.go、router.push、router.replace 和 window.location.href 转到“www.mytargeturl.org”以重定向我的 vuejs 应用程序,但我总是得到 myVueapp.com/www.mytargeturl。组织这是我的路线:

  routes:[
{path: '/', component: App,
children:[
{
path: 'detail',
component: ItemDetail,
props: true
},
{
path: 'search',
component: Middle
}
]
},
{
path: '/test', component: Test
},
{ path: '/a', redirect: 'www.mytargeturl.org' } // also tried this but didnt work

]

最佳答案

同意其他评论中的人。 Vue 的哲学不是解决已经解决的问题。同样在这里。尽可能为链接使用普通的 a 标签。如果您需要通过路由器,请使用 Navigation Guards :

{
path: '/redirect',
beforeEnter(to, from, next) {
// Put the full page URL including the protocol http(s) below
window.location.replace("https://example.com")
}
}

关于vue.js - Vue2 使用 location.href 导航到外部 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44595929/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com