vue打开新页面
Posted duanzhenzhen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue打开新页面相关的知识,希望对你有一定的参考价值。
let tempPage = window.open(‘_blank‘);//先打开一个空白页 this.$axios.post("/aliPay/aliTradePagePay",{ "orderId": this.orderId }).then((response) => { let res = response.data; tempPage.location = res.data; //再设置空白页的地址 }).catch((err) =>{ console.log("支付失败",err); })
以上是关于vue打开新页面的主要内容,如果未能解决你的问题,请参考以下文章