ROR アクション (あるサーバーから別のサーバーへ) への ajax ポストで問題が発生しています。基本的に、このリクエスト:
post_json = { "stuff": [{"1" => "foo"}] };
$.ajax({
url: "http://someurl.com/api/random_post_action",
type: "post",
dataType: "json",
data: post_json,
success: function(data){
console.log(data);
}});
random_post_action パラメータを指定します (Ruby on Rails):
{
"stuff" => {
"0" => {
"1" => "foo"
}
},
"controller" => "api",
"action" => "random_post_action"
}
期待されること:
{
"stuff" => [
[0] {
"1" => "foo"
}
],
"controller" => "api",
"action" => "random_post_action"
}
何が起こっているのかわかりません...