2
我想從另一個域test.example.com訪問example.com。 我已經安裝在服務器example.com與CORS頭像這樣(在nginx.conf)迴應頭:XHR POST請求失敗,CORS
add_header Access-Control-Allow-Origin $http_origin;
add_header Access-Control-Allow-Credentials true;
add_header Access-Control-Allow-Methods "GET, POST, PUT, DELETE, OPTIONS";
add_header Access-Control-Allow-Headers "*";
如果我發送一個GET請求,可以suceed,但如果我發送POST請求其將失敗,並出現此錯誤:
XMLHttpRequest cannot load http://example.com/path. Origin http://test.example.com is not allowed by Access-Control-Allow-Origin.
我該如何處理cors的請求?
感謝。我的服務器的響應代碼不是200,這也造成了一些問題。 – ShiningRay 2013-02-18 12:45:01