0

我试图提出XmlHttpRequest.send请求,但失败了。

我收到错误消息 -

MLHttpRequest Exception 101

我没有很多知识XmlHttpRequest

我试图在 chrome 和 firefox 上运行它

这就是我打开连接的方式

         this.xmlHttpRequest.open("POST", url, isAsync );

发送

         this.xmlHttpRequest.send( request.getData() );

可能是什么问题?我该如何解决这个问题?

4

1 回答 1

1

您是否使用正确的协议?如果它需要 SSL 并且您的 url 是 http:// 那么您可能会收到 101 状态代码。

http://100pulse.com/http-statuscode/101.jsp

于 2012-07-15T08:58:16.107 回答