来自POST的DateTime正确绑定(根据我的计算机格式)
但来自GET的DateTime值未正确绑定,它使用的格式不同
my format is dd.MM.yyyy, in GET it uses MM.dd.yyyy instead
I don't have this problem if I use the en-US format (which is MM/dd/yyyy)
有谁知道如何解决这个问题?
这是一个mvc bug吗? (绑定获取请求时不考虑文化)
答案 0 :(得分:8)
不,这似乎不是一个错误。您可以在此处获取更多详细信息:MVC DateTime binding with incorrect date format
我一直在使用以下的ModelBinder来解决这个问题。
public class CurrentCultureDateTimeBinder : IModelBinder
{
private const string PARSE_ERROR = "\"{0}\" is not a valid date";
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
ValueProviderResult valueProviderResult = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
if (valueProviderResult == null) return null;
var date = bindingContext.ValueProvider.GetValue(bindingContext.ModelName).AttemptedValue;
if (String.IsNullOrEmpty(date))
return null;
bindingContext.ModelState.SetModelValue(bindingContext.ModelName, bindingContext.ValueProvider.GetValue(bindingContext.ModelName));
try
{
return DateTime.Parse(date);
}
catch (Exception)
{
bindingContext.ModelState.AddModelError(bindingContext.ModelName, String.Format(PARSE_ERROR, bindingContext.ModelName));
return null;
}
}
}
希望它有所帮助。