使用自定义对象参数发布未获取数据

发布于 2025-01-09 10:39:15 字数 429 浏览 0 评论 0原文

我正在使用 Visual Studio 模板中的 Post 函数,如下所示,但我已对其进行了修改以接收自定义对象测试。当我使用 Fiddler 发布时,我可以单步执行代码,但测试对象内的 id 和 name 均为 null。我是否误解了为什么没有通过请求正文传递的值?

public void Post([FromBody] Testing value)
{
    var a = value;
}

public class Testing
{
    string id;
    string name;
}

输入图片此处描述

I am using the Post function from the Visual Studio template as seen below, but I've modified it to receive a custom object Testing. When I use Fiddler to Post I am able to step into the code, but both id and name inside of the Testing object are null. Am I misunderstanding something as to why the don't have the values I am passing in through the Request Body?

public void Post([FromBody] Testing value)
{
    var a = value;
}

public class Testing
{
    string id;
    string name;
}

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2025-01-16 10:39:15

您可以在模型中使用 public 属性而不是“私有字段”。

public class Testing
{
    public string id {get;set;}
    public string name {get;set;}
}

You might use public property instead of `private field for your model.

public class Testing
{
    public string id {get;set;}
    public string name {get;set;}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文