我用模型验证编写了一个应用程序,但是当我尝试输入小数值时,我得到了
价值' 12.12'对价格无效。
[Required(ErrorMessage = "Price is required.")]
[Range(0, 9999.99)]
[DataType(DataType.Currency)]
public decimal Price { get; set; }
答案 0 :(得分:2)
两年后我再次偶然发现了这一点。我认为ASP.NET MVC 5已经解决了这个问题,但看起来并非如此。所以这里是如何解决问题的。
创建一个名为DecimalModelBinder的类,如下所示,并将其添加到项目的根目录中,例如:
using System;
using System.Globalization;
using System.Web.Mvc;
namespace YourNamespace
{
public class DecimalModelBinder : IModelBinder
{
public object BindModel(ControllerContext controllerContext, ModelBindingContext bindingContext)
{
ValueProviderResult valueResult = bindingContext.ValueProvider
.GetValue(bindingContext.ModelName);
ModelState modelState = new ModelState { Value = valueResult };
object actualValue = null;
if(valueResult.AttemptedValue != string.Empty)
{
try
{
actualValue = Convert.ToDecimal(valueResult.AttemptedValue, CultureInfo.CurrentCulture);
}
catch(FormatException e)
{
modelState.Errors.Add(e);
}
}
bindingContext.ModelState.Add(bindingContext.ModelName, modelState);
return actualValue;
}
}
}
在Global.asax.cs中,在Application_Start()
中使用它,如下所示:
ModelBinders.Binders.Add(typeof(decimal?), new DecimalModelBinder());
答案 1 :(得分:1)
好的,所以我在Startup.cs中添加了
services.Configure<RequestLocalizationOptions>(options =>
{
options.DefaultRequestCulture = new RequestCulture("en-US");
});
和
app.UseRequestLocalization();
并且有效