js获取项目根路径

 1 //js获取项目根路径,如: http://localhost:8083/uimcardprj
 2 function getRootPath(){
 3     //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp
 4     var curWwwPath=window.document.location.href;
 5     //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp
 6     var pathName=window.document.location.pathname;
 7     var pos=curWwwPath.indexOf(pathName);
 8     //获取主机地址,如: http://localhost:8083
 9     var localhostPaht=curWwwPath.substring(0,pos);
10     //获取带"/"的项目名,如:/uimcardprj
11     var projectName=pathName.substring(0,pathName.substr(1).indexOf(‘/‘)+1);
12     return(localhostPaht+projectName);
13 }
时间: 2024-11-09 02:29:18

js获取项目根路径的相关文章

s获取项目根路径

//js获取项目根路径,如: http://localhost:8083/uimcardprjfunction getRootPath(){ //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp var curWwwPath=window.document.location.href; //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp var pathName=window.document.l

java 或者 js 获取项目访问路径(域名)

/** * 获得站点url * @return */ public String getWebUrl(){ String url = getRequest().getScheme() + "://" + getRequest().getServerName(); if(getRequest().getServerPort()!=80){ url+= ":" + getRequest().getServerPort(); } url+=getRequest().get

获取项目根路径的四种方式

获取项目根路径的四种方式 CreateTime--2018年3月2日11:39:52 Author:Marydon <!-- 假设项目的请求根路径是"/demo" --> <!-- 方式一:EL表达式 --> ${pageContext.request.contextPath} <br>显示结果:"/demo" 应用: <i:form id="AddForm" method="post"

获取项目根路径

传统的jsp页面js获取项目路径的写法: var contextPath = '${pageContext.request.getContextPath()}'; 1 使用thymeleaf是这样获取 <script> var ctx = "[[@{/}]]"; </script> js拼接变量,外面是“”里面用‘+变量+’,外面是‘’里面用“+变量+” 原文地址:https://www.cnblogs.com/3xiaoleilei/p/12084368.ht

javascript 获取项目根路径

/** * http://localhost:8088/projectName */ function getRootPath(){ //获取当前网址,如: http://localhost:8088/projectName/index.jsp var curWwwPath = window.document.location.href; //获取主机地址之后的目录,如: projectName/index.jsp var pathName = window.document.location.

js获取网站项目根路径

//js获取项目根路径,如: http://localhost:8083/uimcardprj function getRootPath(){ //获取当前网址,如: http://localhost:8083/uimcardprj/share/meun.jsp var curWwwPath=window.document.location.href; //获取主机地址之后的目录,如: uimcardprj/share/meun.jsp var pathName=window.document.

【Java】获取此次请求URL,获取服务器根路径

一. 获取此次请求的URL **String requestUrl = request.getScheme() //当前链接使用的协议 +"://" + request.getServerName()//服务器地址 + ":" + request.getServerPort() //端口号 + request.getContextPath() //应用名称,如果应用名称为 + request.getServletPath() //请求的相对url + "?

java ,js获取web工程路径

一.java获取web工程路径 1),在servlet可以用一下方法取得: request.getRealPath(“/”) 例如:filepach = request.getRealPath(“/”) ”//upload//”; 2),不从jsp,或servlet中获取,只从普通java类中获取: String path = getClass().getProtectionDomain().getCodeSource().getLocation().getPath(); SAXReader()

java读取项目根路径下和任意磁盘位置下的properties文件

1.读取项目根路径下的properties文件比较简单也是比较常见的一种操作. 具体代码如下: package com.xuanen.util; import java.util.Properties; import org.springframework.core.io.ClassPathResource; import org.springframework.core.io.support.PropertiesLoaderUtils; public class PropertyUtil {