使用自定义对象参数发布未获取数据
我正在使用 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;
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在模型中使用
public
属性而不是“私有字段”。You might use
public
property instead of `private field for your model.