从HttpActionContext获取JSON内容

时间:2014-07-28 23:48:43

标签: json asp.net-web-api asp.net-web-api2

我正在尝试从HttpActionContext获取JSON内容。

我以为我能做到:

public override void OnActionExecuting(HttpActionContext actionContext)
        {

var test = request.Content.ReadAsStringAsync().Result;

var test2 = actionContext.ControllerContext.Request.Content.ReadAsStringAsync().Result;

但这些都不起作用。即使我在POST请求中传递JSON内容,我的测试变量也总是空的。有人可以向我解释一下,我怎么能得到我想要的东西?

0 个答案:

没有答案