-1

如何为 rails 3 rest 服务进行跨域 POST 调用。

我已经阅读了很多关于 jsonp 的内容,但它仅适用于 GET 方法。有没有其他方法可以在 rails 3 上执行此操作。任何人都可以为我提供对 rails rest 服务进行跨域 json POST 调用的确切步骤。

我想通过 ajax jquery 对 Rails 服务器端休息服务进行 POST 调用。

我尝试使用 JSONP,但它对我不起作用

4

1 回答 1

0

包括 POST 作为类型。

$.ajax({
   type: "POST",
   url: 'ruby/file/name',
   data: {'foo': 'bar'},
   success: function(s) { 
     console.log('success' + s);
   },
   error: function(e) {
     console.log('error' + e);
   }
});
于 2012-10-14T09:28:47.287 回答