<p><input type="button" id="ajax" value="click here!"/><br/>
<script type="text/javascript">
$(function () {
$('#ajax').click(
function () {
$.ajax({
type: 'get',
url: 'https://example.com',
success: function (data) {
alert("OKAY");
},
error: function (data) {
alert("NG");
}
});
});
});
我想在Rails中使用Ajax获取GET请求但是发送了选项请求。
这是控制台日志显示的错误
OPTIONS https://example.com 405 (Method Not Allowed)