gpt4 book ai didi

c# - 传递嵌套复杂类型的 REST URL 语法是什么?

转载 作者:可可西里 更新时间:2023-11-01 08:22:52 25 4
gpt4 key购买 nike

将具有嵌套对象的对象传递到我的 ASP.NET Web API GET 方法的 URL 语法是什么?这可能吗?http://mydomain/mycontroller?...

我的 Controller GET 方法:

 public void Get([FromUri]MyType myType) { ... }

C# 类型:

public class MyType
{
public string Name { get; set; }
public NestedType Foo { get; set; }
}

public class NestedType
{
public int Bar { get; set; }
}

最佳答案

这是可能的——尝试以这种格式传递 URL:

?myType.Foo.Bar=3&myType.Name=Maggie

关于c# - 传递嵌套复杂类型的 REST URL 语法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13980851/

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