Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何配置 MVC4 以使用完整的游行格式化我的模型中的所有小数?我不想将 DataAnnotations 添加到模型中的所有属性中。
您可以通过为十进制创建 DisplayTemplate 来做到这一点。
@model decimal @Model.ToString("0.0000") // Or whatever format you're after...