我的模型的属性是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修复此问题或使用编辑器模板修复它,但此时我没有时间研究和学习第二个选项。
SOLUTION:
我为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" />
}
答案 0 :(得分:8)
您可以使用[DisplayFormat]
属性修饰视图模型上的属性:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:F20}")]
public double Foo { get; set; }
现在只需在强类型视图中输入:
@Html.DisplayFor(x => x.Foo)
或者是否用于编辑:
@Html.EditorFor(x => x.Foo)
如果您希望将此格式应用于应用程序或每个控制器中的所有双打,则另一种可能性是编写custom display/editor template。