You could use a custom model binder:
public class DoubleModelBinder : DefaultModelBinder
{
public override object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
var result = bindingContext.ValueProvider.GetValue(bindingContext.ModelName);
if (result != null && !string.IsNullOrEmpty(result.AttemptedValue))
{
if (bindingContext.ModelType == typeof(double))
{
double temp;
var attempted = result.AttemptedValue.Replace(",", ".");
if (double.TryParse(
attempted,
NumberStyles.Number,
CultureInfo.InvariantCulture,
out temp)
)
{
return temp;
}
}
}
return base.BindModel(controllerContext, bindingContext);
}
}
which could be registered in Application_Start
:
ModelBinders.Binders.Add(typeof(double), new DoubleModelBinder());
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…