我没有看到你在 global.asax 中注册 DateTimeModelBinder 的位置:
ModelBinders.Binders[typeof(DateTime)] =
new DateAndTimeModelBinder() { CustomFormat = "yyyy-mm-dd" };
在 WebApiConfig > 注册方法
public static void Register(HttpConfiguration config) 。 。 。 config.Formatters.JsonFormatter.SerializerSettings = 新 JsonSerializerSettings { 日期格式字符串 = "日/月/年", 文化 = new CultureInfo("pt-BR") };