gpt4 book ai didi

c# - .NET Core API REST C# List into List is null

转载 作者:行者123 更新时间:2023-12-05 03:40:21 24 4
gpt4 key购买 nike

我正在 net core 中开发一个 api。

我已经完成了一个 post 函数,在该函数中我发送了一个包含多个参数的对象和另一个列表中的一个列表。

当我调试代码时,函数被正确调用,但我发现第二个列表总是到达 null。

其余数据正确到达您的手中。我对其他对象进行了不同的测试,一切正常。

在这种情况下,另一个列表中的第二个到达 null。

我的代码:

示例请求输入

{
"Name": "TestName",
"Related1":
[{
"id1": "TestNameRelated1",
"Related2":
[{
"id2": "TestNameRelated2"
}]
}]
}
[HttpPost]
public resultExample Test([FromBody]TestClass test)
{
//do something
}
[DataContract]
public class TestClass
{
[DataMember]
public string Name { get; set; }
[DataMember]
public List<TestClassArray> Related1 { get; set; }
}

[DataContract]
public class TestClassArray
{
[DataMember]
public string id1 { get; set; }
[DataMember]
public List<TestClassArray2> Related2 { get; set; }
}

[DataContract]
public class TestClassArray2
{
[DataMember]
public string id2 { get; set; }
}

这个 api 以前是在 .NET Framework 4.8 中制作的,这个案例工作正常。

现在我将 api 传递给 .Net5。

会不会是.Net5不允许在其他列表中传递列表?

您是否必须启用某种配置才能现在执行此操作?

最佳答案

您需要将类/DTO 与构造函数一起使用,如下所示,您应该可以开始了。我已经在我的 GitHub here 上上传了这个使用 .net5.0 的示例 API 应用程序代码。 .

public class TestClass
{
public TestClass()
{
Related1 = new List<TestClassArray>();
}

public string Name { get; set; }

public List<TestClassArray> Related1 { get; set; }
}

public class TestClassArray
{
public TestClassArray()
{
Related2 = new List<TestClassArray2>();
}

public string id1 { get; set; }

public List<TestClassArray2> Related2 { get; set; }
}

public class TestClassArray2
{

public string id2 { get; set; }
}

public class ResultExample
{
public string StatusCode { get; set; }
public string Message { get; set; }
}

Controller Post Method

        [HttpPost]
[ProducesResponseType(typeof(ResultExample), 200)]
public ResultExample Post([FromBody] TestClass test)
{
ResultExample testResult = new ResultExample();

TestClass test2 = new TestClass();
TestClassArray testClassArray = new TestClassArray();
TestClassArray2 testClassArray2 = new TestClassArray2();

test2.Name = test.Name;

foreach (var item in test.Related1)
{
foreach (var item2 in item.Related2)
{
testClassArray2.id2 = item2.id2;
}

testClassArray.Related2.Add(testClassArray2);
}

test2.Related1.Add(testClassArray);

Console.WriteLine(test2);


testResult.Message = "New Result added successfullly....";
testResult.StatusCode = "201";

return testResult;
}

Swagger Input Sample Payload

enter image description here

Post Controller Result

enter image description here

Response of Sample input payload,(You can change it to default 201 response code as well)

enter image description here

关于c# - .NET Core API REST C# List into List is null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68179985/

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