我是JavaScript新手,我想编写JavaScript脚本,无需“localhost”和端口等即可运行。
以下是我的代码示例:
jQuery.ajax({
type: "GET",
url: "http://localhost:8081/trainer/testToUser",
dataType: "json",
contentType: "application/json; charset=utf-8",
我想要这样的事情:
jQuery.ajax({
type: "GET",
url: "trainer/testToUser",
dataType: "json",
contentType: "application/json; charset=utf-8",
(此变体不起作用)
例如,没有任何端口,它将工作。我读到了“window.location”,我应该使用这样的东西吗?
答案 0 :(得分:3)
您应该在开头添加一个斜杠,它将接受请求的原始域。
jQuery.ajax({
type: "GET",
url: "/trainer/testToUser",
dataType: "json",
...