0
xhttp = new XMLHttpRequest();

doc_name="../Scripts/ResourceFiles/String_Client." + cookieCulture + ".json"
xhttp.open("GET", doc_name, false);

现在得到的路径是

http://www.example.com:4568/Inventory/Scripts/ResourceFiles/String_Client." + cookieCulture + ".json"

但实际上我需要将路径作为http://www.example.com:4568/Scripts/ResourceFiles/String_Client." + cookieCulture + ".json"

4

1 回答 1

0

不知道我是否完全正确地尝试在那里做的事情,但只需在 URL 的开头使用“/”就应该始终做到指向根目录的技巧:

doc_name="/Scripts/ResourceFiles/String_Client." + cookieCulture + ".json"
于 2013-04-04T08:18:39.563 回答