jsp不会将我的帖子重定向到后端服务器和另一个地址

时间:2014-08-28 12:19:09

标签: jsp backend

http.open("POST", url, true);
                //http.setRequestHeader("Content-type", "application/json");
                http.onreadystatechange = function() {
                    if (http.readyState == 4 && http.status == 200) {
                        document.open();
                        document.write(http.responseText);
                    }
                };
                http.send();

这就是我发布帖子的方式,服务器应该将其转移到另一个地址。但由于某种原因,反应总是被取消。

任何想法?

1 个答案:

答案 0 :(得分:0)

是的,是的, 你可以在这里找到答案:

cross-domain