转换.ToDecimal失败并表示输入字符串格式不正确

本文关键字:字符串 格式 不正确 输入 表示 ToDecimal 失败 转换 | 更新日期: 2023-09-27 18:08:17

我有一个带有price属性的视图模型类。

问题是,如果用户输入值$200,150.90,它没有格式化并发送到控制器。

十进制的默认模型格式化程序可能有什么问题?

public ItemViewModel
{
public string Name {get;set;}
[DisplayFormat(DataFormatString = "{0:c}")]
[RegularExpression(@"^'$?([0-9]{1,3},([0-9]{3},)*[0-9]{3}|[0-9]+)(.[0-9][0-9])?$"
ErrorMessage = "Enter a valid money value. 2 Decimals only allowed")]
public decimal? Price{ get; set; }
}

View

@model ItemViewModel
@Html.TextBoxFor(m=>m.Price)
在控制器

public ActionResult Save(ItemViewModel model)
{
 // model.Price is always null, even if it has value $200,150.90
}

我已经在Global.asax中注册了这个十进制模型绑定器

   ModelBinders.Binders.Add(typeof(decimal?), new DecimalModelBinder());
   public object BindModel(ControllerContext controllerContext,
        ModelBindingContext bindingContext)
    {
        ValueProviderResult valueResult = bindingContext.ValueProvider
            .GetValue(bindingContext.ModelName);
        ModelState modelState = new ModelState { Value = valueResult };
        object actualValue = null;
        try
        {
            actualValue = Convert.ToDecimal(valueResult.AttemptedValue,
                CultureInfo.CurrentCulture);
        }
        catch (FormatException e)
        {
            modelState.Errors.Add(e);
        }
        bindingContext.ModelState.Add(bindingContext.ModelName, modelState);
        return actualValue;
    }

模型绑定器Input string was not in a correct format出错

 Convert.ToDecimal("$200,150.90",CultureInfo.CurrentCulture)

转换.ToDecimal失败并表示输入字符串格式不正确

如果格式为货币,则添加了额外的十进制转换

感谢将货币字符串转换为十进制?

 string currencyDisplayFormat=(bindingContext.ModelMetadata).DisplayFormatString;
 if (!string.IsNullOrEmpty(currencyDisplayFormat) 
                           && currencyDisplayFormat == "{0:c}")
 {
    actualValue = Decimal.Parse(valueResult.AttemptedValue,
                  NumberStyles.AllowCurrencySymbol | NumberStyles.Number, 
                  CultureInfo.CurrentCulture);
 }
 else
 {
        actualValue = Convert.ToDecimal(valueResult.AttemptedValue,
                        CultureInfo.CurrentCulture);
 }