如果jQuery中的$ .Ajax不起作用,如何从服务器http://localhost:2323
获取json。 json生成宽度为java class:
public class Main {
public static void main(String[] arr) {
new Main().start();
}
protected void start() {
for (;;) {
try {
Socket remote = new ServerSocket(2323).accept();//port number
BufferedReader in = new BufferedReader(new InputStreamReader(
remote.getInputStream()));
PrintWriter out = new PrintWriter(remote.getOutputStream());
String str = ".";
while (!str.equals(""))
str = in.readLine();
out.println("HTTP/1.0 200 OK");
out.println("Content-Type: text/html");
out.println("Server: Bot");
out.println("");
out.print("{\"a\":\"A\",\"b\":\"asdf\",\"c\":\"J\"}");
out.flush();
remote.close();
} catch (Exception e) {
System.out.println("Error: " + e);
}
}
}
}
输出{" a":" A"," b":" asdf"," c" :" J"}。 而jquery脚本是
$(document).ready(function() {
$.ajax({
type: 'POST',
dataType: 'json',
url: 'http://localhost:2323',//the problem is here
async: false,
data: {},
success: function(data) {
alert(data.a+' '+data.b+' '+data.c);
}
});
});
如果url是http://localhost
,那么它可以工作,如果我追加:portnumber,它就不起作用。如何从URL中读取:portnumber?
由于
答案 0 :(得分:4)
由于同源策略(http://en.wikipedia.org/wiki/Same_origin_policy),在ajax调用中指定端口无法正常工作。这意味着URL必须与服务器具有相同的域和端口,其中脚本是托管的。
此外,请注意此问题已被提出,并且是在Google中搜索时的首批结果之一 - Is it possible to specify a port in a ajax call