我尝试使用multipart / form-data Content-Type进行HTTP PATCH,因为我正在上传文件。但是,Spring的StandardServletMultipartResolver仅使用POST HTTP方法考虑请求。内容类型检查在http方法检查后完成。除了Content-Type设置为multipart之外,POST以外的任何内容都不被视为多部分。
multipart contentType是否应该只与POST一起使用?
public class NormalRangeInfo
{
[Key,DatabaseGenerated (DatabaseGeneratedOption.Identity)]
public Int64 NormalRangeID { get; set; }
[ForeignKey("SubTests")]
public Int64 SubtestID { get; set; }
public int? NormalMin { get; set; }
public int? NormalMax { get; set; }
public string NormalType { get; set; }
public string NormalAllowValue { get; set; }
public string Gender { get; set; }
public Nullable<decimal> AgeMin { get; set; }
public Nullable<decimal> AgeMax { get; set; }
public string AgeType { get; set; }
}