zoukankan      html  css  js  c++  java
  • vue——动态获取当前url,配置axios的baseURL

    参考:https://www.jianshu.com/p/c9324d237a8e

    关于window.location的详解:

      window.location 对象不仅可以获得当前页面的地址 (URL),还能够将浏览器重定向到新的页面。

      下面,以http://www.myurl.com:8866/test?id=123&username=xxx为例来进行解释:

      1. window.location.href (当前url)—— http://www.myurl.com:8866/test?id=123&username=xxx

      2. window.location.protocol(协议)—— http:

      3. window.location.host(域名 + 端口)—— www.myurl.com:8866

      4. window.location.hostname(域名)—— www.myurl.com

      5. window.location.port(端口)—— 8866

      6. window.location.pathname(路径)—— /test

      7. window.location.search (请求的参数)—— ?id=123&username=xxx

      8. window.location.origin(路径前面的url)——  http://www.myurl.com:8866

    main,js中:

    ···
    import Axios from 'axios';
    
    let path =  '/contentPath'
    let url = window.location.origin +path; //path为上下文路径,如果后端有配置就添加
    Axios.defaults.baseURL = url;
  • 相关阅读:
    近期总结
    input
    mysql语句
    同步与异步
    localStorage的增删查改封装函数
    最基本的前后台传值
    前段存储的调用函数
    js 控制弹出窗口的大小
    拖拽
    jQuery镇张缩小动画
  • 原文地址:https://www.cnblogs.com/linjiangxian/p/13097863.html
Copyright © 2011-2022 走看看