MVC3编辑器双显示科学符号
本文关键字:符号 双显示 编辑器 MVC3 | 更新日期: 2023-09-27 18:10:16
我的模型有一个double类型的属性。我的一个项目的值是0.000028,但是当我的编辑视图呈现时,这个值的编辑器显示为2.8e-005。
除了让我的用户感到困惑之外,它还使
的正则表达式验证失败。 [Display(Name = "Neck Dimension")]
[RegularExpression(@"[0-9]*'.?[0-9]+", ErrorMessage = "Neck Dimension must be a Number")]
[Range(0, 9999.99, ErrorMessage = "Value must be between 0 - 9,999.99")]
[Required(ErrorMessage = "The Neck Dimension is required.")]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:F20}")]
public double? NeckDimension { get; set; }
如何显示这个字段?我已经得到了这段代码(如下所示),它将像我想要的那样呈现小数,但我不确定在哪里实现它。
var dbltest = 0.000028D;
Console.WriteLine(String.Format("{0:F20}", dbltest).TrimEnd('0'));
我在两个地方使用了属性NeckDimension,编辑视图和显示视图。下面是它们的渲染方式。
@Html.TextBoxFor(model => model.NeckDimension, new { style = "width:75px;" })
@Html.DisplayFor(model => model.NeckHDimension)
显然,DisplayFormat不会与TextBoxFor一起工作。我试图改变我的@Html。TextBoxFor转换为Html。EditorFor并给它一个类,但它失败了,出现了以下异常。
The model item passed into the dictionary is of type 'System.Double', but this dictionary requires a model item of type 'System.String'
旧代码仍然有效:
@Html.TextBoxFor(model => model.NeckDimension, new { style = "width:75px;" })
下面的代码给出了一个异常:
@Html.EditorFor(model => model.NeckDimension, new {@class = "formatteddecimal"})
看起来我的选择是用javascript或用编辑器模板修复它,但我没有时间去研究和学习第二种选择。
解决方案:
我创建了一个编辑器模板double?如下。
@model double?
@{
var ti = ViewData.TemplateInfo;
var displayValue = string.Empty;
if (Model.HasValue) {
displayValue = String.Format("{0:F20}", @Model.Value).TrimEnd('0');
}
<input id="@ti.GetFullHtmlFieldId(string.Empty)" name="@ti.GetFullHtmlFieldName(string.Empty)" type="text" value="@displayValue" />
}
您可以使用[DisplayFormat]
属性来修饰视图模型上的属性:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:F20}")]
public double Foo { get; set; }
,现在在强类型视图中只需:
@Html.DisplayFor(x => x.Foo)
或者如果是用于编辑:
@Html.EditorFor(x => x.Foo)
如果你想在你的应用程序或每个控制器中应用这种格式,另一种可能性是编写一个自定义的显示/编辑器模板。