我正在使用 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"?
是否有返回当前主机名路径的安全方法?