window location href 方法及其使用 导出

与小蜗牛一起成长

导出列表

按钮  

       导出
  

引入地址
  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):也是返回当前页的上一页,不过表单里的数据全部还在



 

你可能感兴趣的:(window location href 方法及其使用 导出)