HttpContext 中发布数据的位置

发布于 2024-10-28 21:59:21 字数 333 浏览 0 评论 0原文

我正在将 Json 数据发布到 Restful Api。

服务器 ASP.Net MVC 应用程序使用 JsonValueProviderFactory 自动将数据绑定到模型对象,

[HttpPut]
[ActionName("Student")]
public ActionResult PutStudent(Student s)
{
    return Content("");
}

只有部分 json 数据绑定到 Student。其他人则不然。在 MVC 应用程序中,如何查看原始发布数据?我无法在 HttpContext 中找到它。

请帮忙。

I am posting Json data to a Restful Api.

The server ASP.Net MVC app automatically binds the data to a model object using JsonValueProviderFactory

[HttpPut]
[ActionName("Student")]
public ActionResult PutStudent(Student s)
{
    return Content("");
}

Only some of the json data is bound to Student. Others are not. In the MVC app, how do I see the raw posted data? I am unable to find it in HttpContext.

Please help.

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

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

发布评论

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

评论(2

柒七 2024-11-04 21:59:22

您可以使用 Fiddler 来检查原始 HTTP 流量。

You could use Fiddler to inspect the raw HTTP traffic.

爱人如己 2024-11-04 21:59:21

尝试读取 HttpContext.Request.InputStream 对象中的流。

try reading the stream in HttpContext.Request.InputStream object.

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