gpt4 book ai didi

ASP.NET MVC 3,部分接收 JSON 作为字典?

转载 作者:行者123 更新时间:2023-12-02 00:14:31 24 4
gpt4 key购买 nike

<分区>

如何在 MVC 3 操作中接收 JSON 作为模型(包含字典)?

浏览器端:将 JSON 发布到 MVC3 操作:

UpdateData : 
{
Id: 88991,
Changes:
{
X:5,
Y:6
}
}

服务器端:

public class UpdateDataModel
{
public int Id {get;set;}
public IDictionary<string, string> Changes {get;set;}
}

public ActionResult SaveUpdateData(UpdateDataModel updateData)
{
// updateData.Id should be 88991
// updateData.Changes should be a dictionary containing X:5, Y:6
}

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