我正在尝试从HttpActionContext获取JSON内容。
我以为我能做到:
public override void OnActionExecuting(HttpActionContext actionContext)
{
var test = request.Content.ReadAsStringAsync().Result;
var test2 = actionContext.ControllerContext.Request.Content.ReadAsStringAsync().Result;
但这些都不起作用。即使我在POST请求中传递JSON内容,我的测试变量也总是空的。有人可以向我解释一下,我怎么能得到我想要的东西?