1

我正在使用 ajax 请求从 URL 重新运行 json。

这在本地工作如下:

$.ajax({
            url: "http://localhost:8080/updates.json",      
            type: 'post',
            dataType : "json",
            success : function(jsonResponse) {  
            }); 

            },
            error: function (err) {
            } 

        });

url 需要更新,以便无论部署在哪个 na eof 服务器上都能正常工作。

url 是否可以替换为:“http://”+getThisHostName()+":8080/updates.json"?

是否有返回当前主机名路径的安全方法?

4

1 回答 1

2

你可以这样做

//say you are on http://domain.com:8080
//this will request from http://domain.com:8080/updates.json
$.ajax({
    url: "/updates.json", 
    ...
});
于 2012-07-20T13:34:51.370 回答