9

控制器方法是否可以处理派生自特定基类的所有已发布项目?这个想法是能够通过将命令发布到端点来分派命令。当我尝试以下操作时,Post 方法中的“cmd”参数始终为空。

例子

//the model:
public abstract class Command{
    public int CommandId{get; set;}
}
public class CommandA:Command{
    public string StringParam{get; set;}
}
public class CommandB:Command{
    public DateTime DateParam{get; set;}
}

//and in the controller:
    public HttpResponseMessage Post([FromBody]Command cmd)
    {
        //cmd parameter is always null when I Post a CommandA or CommandB
        //it works if I have separate Post methods for each Command type
        if (ModelState.IsValid)
        {
            if (cmd is CommandA)
            {
                var cmdA = (CommandA)cmd; 
                // do whatever
            }
            if (cmd is CommandB)
            {
                var cmdB = (CommandB)cmd;
                //do whatever
            }

            //placeholder return stuff
            var response = Request.CreateResponse(HttpStatusCode.Created);
            var relativePath = "/api/ToDo/" + cmd.TestId.ToString();
            response.Headers.Location = new Uri(Request.RequestUri, relativePath);
            return response;
        }
        throw new HttpResponseException(HttpStatusCode.BadRequest);
    }

同样,当我尝试这种方法时,会调用 Post 方法,但框架中的参数始终为 null。但是,如果我用具有特定 CommandA 参数类型的 Post 方法替换它,它就可以工作。

我正在尝试的可能吗?还是每种消息类型都需要控制器中的单独处理程序方法?

4

1 回答 1

2

如果您以 Json 格式发送数据,那么以下博客将详细介绍如何在 json.net 中实现层次结构反序列化:

http://dotnetbyexample.blogspot.com/2012/02/json-deserialization-with-jsonnet-class.html

于 2012-09-03T19:13:23.233 回答