public ActionResult DoSomething(string[] arr, bool someBool, int someInt) { }
jQueryから上記のメソッドを呼び出そうとしています:
var test = [];
test.push('dog');
test.push('cat');
$container.load('MyController/DoSomething',
{ 'arr[]': test, 'someBool': true, 'someInt': 1 },
function(response, status, xhr) {
// ...
});
配列パラメーターは null です。他のパラメーターは問題ありません。私は何を間違っていますか?
Chrome デベロッパー ツールは、送信されたフォーム データを次のように表示します。
arr%5B%5D%5B%5D:dog
arr%5B%5D%5B%5D:cat
someBool:true
someInt:1
そこで何が起こっているのかわかりませんが、私には正しく見えません