作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
尝试向我的 C# API 发送 Fiddler Post 请求,如下所示(这是我使用 VS2012 的开发环境)。但是,我的请求对象是 null
在 C# 中。在 Composer 选项卡的解析选项卡中。我的帖子网址:http://localhost:33218/api/drm
User-Agent: Fiddler/4.4.9.2 (.NET 4.0.30319.34209; WinNT 6.1.7601 SP1; en-US; 4xAMD64)
Pragma: no-cache
Accept-Language: en-US
Host: localhost:33218
Accept-Encoding: gzip, deflate
Connection: Close
Content-Length: 80
&sid=f7f026d60bb8b51&riskMeasureName=RMTest
// POST api/drm
public HttpResponseMessage Post([FromBody]JObject drmObject)
{
string sid = drmObject.GetValue("sid").ToString();
string riskMeasCategory = drmObject.GetValue("riskMeasureName").ToString();
string response = DynAggrClientAPI.insertDRMCategory(sid, riskMeasCategory);
var httpResp = Request.CreateResponse(HttpStatusCode.OK);
httpResp.Content = new StringContent(response, Encoding.UTF8, "application/json");
return httpResp;
}
Post()
方法,但
drmObject
是
null
.
最佳答案
您没有发送内容类型,因此 MVC 无法告诉如何解释数据。
您的数据似乎类似于表单 POST,因此添加标题:
Content-Type: application/x-www-form-urlencoded
关于http-post - 如何在 Fiddler 中创建 Post 请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29154844/
我是一名优秀的程序员,十分优秀!