时间格式格式化为TotalMilliseconds
作者:互联网
我正在编写一个简单的ASP.Net页面,其中有几个字段,其中一个是超时.我想将其显示为毫秒(但仍然希望有一个时间跨度而不是int / string).我正在编写以下代码:
<input asp-for="Entry.Interval" asp-format="{0:fff}" type="text" class="form-control">
但这是一个问题.此格式无法正常工作.我希望TimeSpan.FromMinutes(2).ToString(“ fff”)返回120000,但它返回000.这显然是因为TimeSpan使用Milliseconds属性,在此示例中为零,但是我需要TotalMilliseconds.
是否有某种格式可以强制以所需单位显示整个TimeSpan?我真的不想写一个整数字段并在此TimeSpan上手动映射它.
解决方法:
您可以定义另一个仅用于绑定的属性
class Entry
{
public TimeSpan Interval { get; set; }
public int IntervalMS
{
get { return (int)Interval.TotalMilliseconds; }
set { Interval = TimeSpan.FromMilliseconds(value); }
}
//other stuff...
}
接着
<input asp-for="Entry.IntervalMs" type="text" class="form-control">
标签:string-formatting,timespan,datetime,c,net 来源: https://codeday.me/bug/20191026/1938774.html