Ajax:如何获得请求?

时间:2017-04-26 15:34:15

标签: ruby-on-rails ajax http

<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)

0 个答案:

没有答案