window location href 方法及其使用 导出
与小蜗牛一起成长 导出列表 按钮 <el-button type="primary" @click="handImport" :disabled="isexport"> <i class="iconfont icondaoru"></i>导出 </el-button> 引入地址 import {baseUrl} from '@/utils/env.js'; 导出 handImport() { window.location.href = baseUrl + '接口?access_token=' + this.$store.getters.token + '&unid=' + this.baseUnid}, 小小发现 self.location.href="/url" 当前页面打开URL页面 location.href="/url" 当前页面打开URL页面 windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同。 this.location.href="/url" 当前页面打开URL页面 parent.location.href="/url" 在父页面打开新页面 top.location.href="/url" 在顶层页面打开新页面 window.history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面