Web Api模型绑定文件附件

时间:2016-02-06 15:22:40

标签: c# asp.net-mvc asp.net-web-api

我有一个名为Event的模型。

public class Event { 
  public int  Id {get; set;} 
  public string Name {get; set;} 
}

我在控制器操作方法中使用Event

    // POST api/events
    [HttpPost]
    public CreateEventResponse Post(Event request)
    {
        return new CreateEventResponse { Id = 123 };
    }

enter image description here

这很有效。

但有时候我需要在保存时将事件附加到事件。

我从fiddler中选择上传文件,但内容类型更改为multipart/form-data;

enter image description here

但是这次 Event 在控制器操作中没有被模型绑定器绑定。

enter image description here

0 个答案:

没有答案