我想知道是否有办法用REST做这件事,因为我知道我可以用$ .soap来做。
我想做这样的事情,有可能吗?参见:
$.ajaxSetup({
cache: false,
crossDomain: true,
dataType: "json",
url: "http://localhost:8080/warfile/rest-api/cmds/",
});
接下来的电话会是:
$.ajax({
method: "setPort",
type: "POST",
data: JSON.stringify({ "port": "8431" })
});