I m 无法利用jquery s ajax功能成功填补。
运行页的URL为http:// localhost:9999/
,目标(网络服务)的URL为
http:// localhost:8080
。 港口没有相同,分别为999个和8080个。
下面是请求书和jquery ajax代码。
<>Request:
OPTIONS /profile/set_member HTTP/1.1
Host: localhost:8080
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.8) Gecko/20100722 Firefox/3.6.8
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Connection: keep-alive
Origin: http://localhost:9999
Access-Control-Request-Method: POST
www.un.org/Depts/DGACM/index_spanish.htm Query ajax Code:
$.ajax({
type: "POST", url: "http://localhost:8080/profile/set_member",
contentType: "application/json", data: member,
error: function(){ alert( Update failed! ); },
processData: false,
success: function(){ alert( Update successful! ); }
});