0

我在将整数列表的 jquery 帖子发回控制器中的操作方法时遇到问题。

我的帖子 jquery 如下:

    $.post('/Section/RunAlgorithm', {
        test: JSON.stringify([1, 2])
    }, function (response) {
    }, 'json');

我的控制器动作定义如下:

public ActionResult RunAlgorithm(int[] test)

发布到该方法时,我的测试参数为空。我该如何解决这个问题,我的代码中哪里存在问题?

谢谢

4

1 回答 1

1

我好累o___O ..这是解决方案:

    $.ajax('/Section/RunAlgorithm', {
        type: 'POST',
        traditional: true,
        data: {
            test: [1, 2, 3]
        }
    });
于 2013-09-27T03:08:40.003 回答