Html.EditorFor以小数点ASP.NET MVC检索null

时间:2017-02-21 10:13:40

标签: c# html-editor

在视图中检索小数数据时遇到问题。它发生在谷歌Chrome和M.Edge,但与I.Explorer和Firefox没有发生。

这是我的模特:

public Nullable<decimal> TA_RATE_CARD_COST { get; set; }

这是观点:

@Html.EditorFor(m => m.TA_RATE_CARD_COST, "DecimalNullable")

当存储在数据库中的值是例如500,54时,视图不检索值,EditorFor为空。

enter image description here

如果存储的值为500,则会正确检索数据,就像我给你看的那样。

enter image description here

为什么会这样?我记得使用旧版Chrome可以正常使用。我很感激任何帮助。 提前谢谢。

0 个答案:

没有答案