当前位置 : 主页 > 网络编程 > JavaScript >

js中的basePath

来源:互联网 收集:自由互联 发布时间:2021-06-28
主要用来替代jsp中经常使用的basePath /** 减少相对路径而添加的basePath* 主要用来替代jsp中经常使用的basePath* *//** * 项目上下文访问路径 * 如:/myproject * @type {string} */var projectPath = window.
主要用来替代jsp中经常使用的basePath
/*
* 减少相对路径而添加的basePath
* 主要用来替代jsp中经常使用的basePath
* */
/**
 * 项目上下文访问路径
 * 如:/myproject
 * @type {string}
 */
var projectPath = window.location.pathname == 'null'?'':window.location.pathname.substring(0,window.location.pathname.indexOf('/',1));


/**
 * 服务器地址 如 : http://localhost:8080
 * @type {string|Array|*|string|Array.
 
  }
 */
var serverPath = window.location.origin;

/**
 * 便于服务器资源访问的basePath
 * 如:http://localhost:8080/myproject
 * @type {string}
 */
var basePath = serverPath + projectPath;
 
网友评论