web项目中的路径问题
Posted 大忽悠爱忽悠
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web项目中的路径问题相关的知识,希望对你有一定的参考价值。
ajax的url路径写法
1、相对于网站根目录可以用"/"开始 (根目录是指服务器的根目录,不是你项目的根目录)
$.ajax({
url:"/getData.do"
})
请求的路径是:http://localhost:8080/getData.do
2.“…/”表示页面目录的上一级目录
$.ajax({
url:"../getData.do"
})
请求的路径是:http://localhost:8080/projectname/getData.do
3、项目的根路径----设置的项目的虚拟目录
$.ajax({
url:"getdata.do"
})
请求的路径是:http://localhost:8080/projectname/getData.do
4、全路径
$.ajax({
url:"http://localhost:8080/projectname/getdata.do"
})
请求的路径是:http://localhost:8080/projectname/getdata.do
以上是关于web项目中的路径问题的主要内容,如果未能解决你的问题,请参考以下文章
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段