gpt4 book ai didi

c# - 将 Javascript JSON 转换为 .NET 整数数组

转载 作者:太空宇宙 更新时间:2023-11-03 23:30:27 24 4
gpt4 key购买 nike

我试图将 json 数据传递给 .net mvc Controller 。似乎 mvc 自动将 id 和 lastdatetime 转换为正确的格式,但不是 int[] currentIds,有人知道为什么吗?

var jsonData = {
"id": id,
"lastDataTime": lastDateTime,
"currentIds": [1, 2, 3, 4]
};


public void Process(int id, DateTime lastDateTime, int[] currentIds)
{

}

最佳答案

请试试这个:

$.ajax({
type: "POST",
url:"@Url.Action("Index", "Home")" ,
data: {
"id": id,
"lastDataTime": lastDateTime,
"currentIds": [1, 2, 3, 4]
},
dataType: "json",
traditional: true,
success: function(msg){
alert(msg)
}
});


public ActionResult Index(int id, DateTime lastDateTime, int[] currentIds)
{

}

关于c# - 将 Javascript JSON 转换为 .NET 整数数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32452375/

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