gpt4 book ai didi

c# - 使用 jQuery Ajax 将对象列表传递给 MVC Controller 方法

转载 作者:IT王子 更新时间:2023-10-29 03:24:54 26 4
gpt4 key购买 nike

我正在尝试将对象数组传递到 MVC Controller 方法中,使用jQuery 的 ajax() 函数。当我进入 PassThing() C# Controller 方法时,参数“事物”为空。我已经尝试过使用一种 List for的论点,但这也不起作用。我做错了什么?

<script type="text/javascript">
$(document).ready(function () {
var things = [
{ id: 1, color: 'yellow' },
{ id: 2, color: 'blue' },
{ id: 3, color: 'red' }
];

$.ajax({
contentType: 'application/json; charset=utf-8',
dataType: 'json',
type: 'POST',
url: '/Xhr/ThingController/PassThing',
data: JSON.stringify(things)
});
});
</script>

public class ThingController : Controller
{
public void PassThing(Thing[] things)
{
// do stuff with things here...
}

public class Thing
{
public int id { get; set; }
public string color { get; set; }
}
}

最佳答案

根据 NickW 的建议,我能够使用 things = JSON.stringify({ 'things': things }); 这是完整的代码。

$(document).ready(function () {
var things = [
{ id: 1, color: 'yellow' },
{ id: 2, color: 'blue' },
{ id: 3, color: 'red' }
];

things = JSON.stringify({ 'things': things });

$.ajax({
contentType: 'application/json; charset=utf-8',
dataType: 'json',
type: 'POST',
url: '/Home/PassThings',
data: things,
success: function () {
$('#result').html('"PassThings()" successfully called.');
},
failure: function (response) {
$('#result').html(response);
}
});
});


public void PassThings(List<Thing> things)
{
var t = things;
}

public class Thing
{
public int Id { get; set; }
public string Color { get; set; }
}

我从中学到了两件事:

  1. contentType 和 dataType 设置在 ajax() 函数中是绝对必要的。如果它们丢失,它将无法工作。经过反复试验,我发现了这一点。

  2. 要将对象数组传递给 MVC Controller 方法,只需使用 JSON.stringify({ 'things': things }) 格式即可。

我希望这对其他人有帮助!

关于c# - 使用 jQuery Ajax 将对象列表传递给 MVC Controller 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13242414/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com