react 打开新窗口

话不多说,直接上代码:

使用路由提供的history对象
const {history} = this.props 
const domA = document.createElement('a')
domA.href = history.createHref({
pathname: '/page/view-model', // 是你想要新窗口打开的路由页面地址
})
domA.target = '_blank'
domA.click()
posted @ 2022-12-19 11:47  唯一念  阅读(1161)  评论(0编辑  收藏  举报