我知道問題不是要求PHP代碼。因爲這個預檢事件和Angular2,我到了這裏。當我看着Matteo的回答時,我意識到爲什麼對我的服務器的請求將返回到401.這是因爲在預檢瀏覽器中不會發送授權令牌,因此服務器會返回401,並且瀏覽器認爲CORS不被允許。請注意下面的代碼只能在開發服務器中使用,除非你知道你在做什麼。
在PHP中,你可以這樣做:
if (strtolower($_SERVER['REQUEST_METHOD']) === 'options') {
header('Access-Control-Allow-Origin: ' . $_SERVER['HTTP_ORIGIN']);
header('Access-Control-Allow-Methods: POST, GET, OPTIONS');
header('Access-Control-Allow-Headers: Origin, X-Requested-With, Content-Range, Content-Disposition, Content-Type, Authorization');
header('Access-Control-Allow-Credentials: true');
echo 'Allowed';
exit;
}
或Nginx的
if ($request_method = 'OPTIONS') {
add_header 'Access-Control-Allow-Origin' '*';
add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
#
# Custom headers and headers various browsers *should* be OK with but aren't
#
add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
#
# Tell client that this pre-flight info is valid for 20 days
#
add_header 'Access-Control-Max-Age' 1728000;
add_header 'Content-Type' 'text/plain charset=UTF-8';
add_header 'Content-Length' 0;
return 204;
}
記住任何其他你發送你必須添加到服務器頭接入控制允許頭名單。
我閱讀了「在ASP.NET Web API中啓用跨域請求」的文檔,您應該在響應中包含此標頭。請參閱此頁面中的「CORS如何工作」部分:http://www.asp.net/web-api/overview/security/enabling-cross-origin-requests-in-web-api#how-it-works。 –
***我正在關閉它,因爲它只是每個OP的打印錯誤。*** – Win
我認爲這個問題在服務器屬性中見: http://stackoverflow.com/questions/36825429/angular-2-no -access-control-allow-origin-header-is-present-on-the-requested –