admin 管理员组文章数量: 887016
今天做了一个功能是点击按钮路由跳转打开新的窗口页面
- 第一种方法
<router-link target="_blank" :to="{path:'/FundManger/FundProductMoney',
query:{managerId:fundcode}}></router-link>"
- 第二种方法
<a @click="getGetMyPortfolioById(scope.row) ">查看</a>
getGetMyPortfolioById(vals) {
getMyPortfolioById({
}).then(response = >{
const routerdata = this.$router.resolve({
name: '组合分析以及组合持仓',
params: { managerId: vals.fundCode }
})
const newhref = routerdata.href + '?managerId=' + vals.fundCode
window.open(newhref, '_blank')
})
}
当我们用到第二种方法时候,是触发事件请求接口根据条件去判断在进行路由跳转,这个时候就会遇到浏览器被拦截的问题
在接口请求的回调函数中 需要使用window.open()打开新页面,但是等接口请求成功之后,window.open()打开新页面总是被浏览器拦截,原因大概是,放在请求回调函数中的操作,被浏览器认为不是用户主动触发的事件,并且延迟1000ms ,被认为有可能是广告,于是被拦截
解决的方法:
在接口请求之前先打开一个空的页面
let tempPage=window.open(’’ ", _blank’);
然后在回调函数中,
tempPage.location=url;
- 第二种方法(改良版)
<a @click="getGetMyPortfolioById(scope.row) ">查看</a>
getGetMyPortfolioById(vals) {
const tempPage = window.open('', '_blank')
getMyPortfolioById({}).then(response = >{
const routerdata = this.$router.resolve({
name: '组合分析以及组合持仓',
params: {
managerId: vals.fundCode
}
})
const newhref = routerdata.href + '?managerId=' + vals.fundCode
tempPage.location = newhref
})
}
版权声明:本文标题:vue 路由跳转打开新窗口(被浏览器拦截) 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1728364618h1234085.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论