5

我有以下代码,但请求结束 (Foo() / Bar()) 总是在No action was found on the controller 'Device' that matches the request.

我的 WebApiConfig 中有一个自定义路由:

config.Routes.MapHttpRoute(
    name: "DefaultApi",
    routeTemplate: "api/{controller}/{action}/{id}",
    defaults: new {id = RouteParameter.Optional}
    );

我的 ASP.NET WebAPI 控制器:

[HttpPost]
public void UpdateToken(string newToken)
{
    _deviceHandler.UpdateToken(newToken);
}

要查询我的 ASP.NET WebAPI,我使用的是 RestSharp。

private static void Send(string resource, Method method, object payload)
{
    var client = new RestClient(baseUrl);
    var request = new RestRequest(resource, method);
    request.XmlSerializer = new JsonSerializer();
    request.RequestFormat = DataFormat.Json;
    request.AddBody(payload);

    var response = client.Execute(request);
    // ... handling response (exceptions, errors, ...)
}

public void Foo()
{
    var newToken = "1234567890";
    Send("/api/device/updatetoken", RestSharp.Method.POST, newToken );
}

public void Bar()
{
    var newToken = new { newToken = "1234567890" };
    Send("/api/device/updatetoken", RestSharp.Method.POST, newToken );
}

避免此错误的唯一方法是创建一个包装类,其中包含一个属性 (get;set;),其中包含控制器参数的名称 (newToken)。

我有很多请求发送一个或两个自定义字符串(未定义长度)作为帖子(get 长度有限)。但是为每个场景创建一个包装器实现是真正的开销!我正在寻找另一种方式。

PS:我希望我通过简化场景没有犯任何错误=)

4

1 回答 1

12

默认情况下,原语是从 URI 绑定的。如果你想要一个原语来自身体,你应该像这样使用 [FromBody] 属性:

[HttpPost]
public void UpdateToken([FromBody] string newToken)
{
    _deviceHandler.UpdateToken(newToken);
}

然后将使用适当的格式化程序对字符串进行反序列化。如果是 JSON,则请求正文应如下所示:

"1234567890"
于 2013-02-28T13:01:41.543 回答