window location href 方法及其使用 导出

安稳与你 提交于 2020-01-14 08:46:52

与小蜗牛一起成长

导出列表

按钮  
<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):直接返回当前页的上一页,数据全部消息,是个新页面
window.history.go(-1):也是返回当前页的上一页,不过表单里的数据全部还在



 

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!