gpt4 book ai didi

c# - 为什么得到空对象

转载 作者:太空宇宙 更新时间:2023-11-03 21:04:20 26 4
gpt4 key购买 nike

我正在通过 postman 测试我的网络 API。但是获取传递的请求对象为空。

以下是 WebAPI 操作。

    [AcceptVerbs("POST")]
[HttpPost]
[Route("rename")]
public IHttpActionResult Rename([FromBody]Customer custObj)
{

//I am getting custObj always null
}

最初,我收到以下错误。

Error sending json in POST to web API service

使用下面的链接,我知道我错过了设置 content-type:application/json
Error sending json in POST to web API service

设置内容类型后,调用了 API 方法,但我得到的客户对象为空。

Postman

public class Customer
{
public int UserId {get; set;}

public string Title {get; set;}


//& so on
}

非常感谢任何帮助/建议。谢谢

最佳答案

在 POSTMAN 中,

选择“原始”而不是“表单数据”

选择“JSON(应用程序/json)”而不是(默认)“文本”

粘贴

{
"UserId": 1,
"Type": "Gold",
"Title": "Test rename api via postman"
}

点击“发送”

关于c# - 为什么得到空对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42267847/

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