ajax跨域訪問報錯501的解決方案_AJAX相關

來源:互聯網
上載者:User

問題:ajax跨域訪問報錯501

運行下面的代碼會報錯501

$.ajax({      type: "POST",    url: "http://192.168.1.202/sensordata.php",    contentType:'application/json; charset=utf-8',    data: JSON.stringify(ajaxPostData),    dataType:'json',    success: function(data){      //On ajax success do this      console.info("success.");      if (data["status"] == "ok"){        alert("Settings is Ok. The Machine is rebooting.");      }    },    error: function(xhr, ajaxOptions, thrownError) {      //On error do this      console.info("error.");      if (xhr.status == 200) {        alert(ajaxOptions);      }      else {        alert(xhr.status);        alert(thrownError);      }    }  });

解決方案:

去掉 contentType:'application/json; charset=utf-8'

原因:

1 在跨域的時候,除了contentType為application/x-www-form-urlencoded, multipart/form-data或者text/plain外,都會觸發瀏覽器先發送方法為OPTIONS的請求。

2 比如說,你原來的請求是方法方法POST,如果第一個請求返回的結果Header中的Allow屬性並沒有POST方法,

3那麼第二個請求是不會發送的,此時瀏覽器控制台會報錯,告訴你POST方法並不被伺服器支援。

參考文檔:http://www.foreverpx.cn/2016/06/22/cross_content_type/

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.