>  기사  >  웹 프론트엔드  >  304 CORS_html/css_WEB-ITnose

304 CORS_html/css_WEB-ITnose

WBOY
WBOY원래의
2016-06-24 11:42:451244검색

304响应, CORS问题: 没有 Access-Control-Allow-Origin 这个头信息时,以前次返回的200请求为准。

示例:可能已被删除
http://7af3zm.com1.z0.glb.clouddn.com/ajax_304_cors.html

附上源码:
html

<!doctype html><html><head>	<meta charset="UTF-8"></head><body><script type="text/javascript">// var _ajax_34re = false;	function getAjax () {		var _ajax_34re = false;		if (_ajax_34re) {			return _ajax_34re;		}		try {			_ajax_34re = new XMLHttpRequest();	   } catch (trymicrosoft) {	     try {			_ajax_34re = new ActiveXObject("Msxml2.XMLHTTP");	     } catch (othermicrosoft) {	       try {			_ajax_34re = new ActiveXObject("Microsoft.XMLHTTP");	       } catch (failed) {			_ajax_34re = false;	       }	     }	   }		return _ajax_34re;	}	function load(url) {		request =  getAjax ();		request.open("GET", url);    	request.onreadystatechange = updatePage;    	request.send(null);   }   function updatePage() {     if (request.readyState == 4)       if (request.status == 200)         alert("Server is done!" + request.responseText);       else if (request.status == 404)         alert("Request URL does not exist");       else         alert("Error: status code is " + request.status);   }</script><pre class="brush:php;toolbar:false">	access: 200、304响应都有 Access-Control-Allow-Origin:*;	access-non: 200、304响应都 没 有 Access-Control-Allow-Origin;	access-200: 200响应都有 Access-Control-Allow-Origin:*, 304响应 没 有 Access-Control-Allow-Origin;
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.