1、比如在浏览器通过以下地址访问:
http://localhost:8000/webUI/index.html
2、而在index.html通过jquery Ajax请求如下:
$.ajax({
url: 'http://127.0.0.1:8000/?cmd=login,
type:"GET",
dataType:"text",
....
});
则会出现
code 501, message Unsupported method ('OPTIONS')
原因就是js限制了跨域访问。1使用的是localhost,而2使用的是127.0.0.1