gpt4 book ai didi

c# - 如何在 ASP.NET Core Web API 中发布对象列表

转载 作者:行者123 更新时间:2023-12-04 12:06:17 25 4
gpt4 key购买 nike

我看过几个教程,其中使用 POST 方法发送 json 对象。

[HttpPost]
public async Task<IActionResult> createEntity([FromBody]Entity entity)
{
try
{
await _repository.Entity.CreateEntityAsync(entity);
return Ok();
}
catch (Exception ex)
{
return StatusCode(500, "Internal server error");
}
}

这可以正确完成工作

现在,如果我想发送:

{ "ID":1, "data":[ { "value1":"xxxx", "value2":"yyyy" }, { "value1":"zzzz", "value2":"wwww" } ] }



如果你能推荐我什么是最好的选择

最佳答案

制作一个 DTO 类,如下所示:

public class YourDto
{
public int ID {get; set;}
public List<Data> Data {get; set;}
}

哪里 Data如下:
public class Data
{
public string Value1 {get; set;}
public string Value2 {get; set;}
}

然后在你的 POST 方法中:
[HttpPost]
public async Task<IActionResult> createEntity([FromBody]YourDto yourDto)
{
try
{
// do whatever you want to do with the yourDto object

return Ok();
}
catch (Exception ex)
{
return StatusCode(500, "Internal server error");
}
}

关于c# - 如何在 ASP.NET Core Web API 中发布对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55175457/

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