- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Javascript
var row = "";
jQuery.each(response.content, function (index, item) {
row += "<tr ><td>" + item.lectureStartTime + " </td> </tr>";
});
$("#tbldialogfacultyclash").html(row);
模型类
[Key]
[Column(Order = 9, TypeName = "time")]
[Required(ErrorMessage = "Required!")]
[DisplayName("Lecture Start Time")]
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:HH:mm tt}")]
public TimeSpan lectureStartTime { get; set; }
[Key]
[Column(Order = 10, TypeName = "time")]
[Required(ErrorMessage = "Required!")]
[DisplayName("Lecture End Time")]
[DataType(DataType.Time)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:HH:mm tt}")]
public TimeSpan lectureEndTime { get; set; }
[Column(Order = 11)]
[Required(ErrorMessage = "Required!")]
[DisplayName("lecture Total Duration")]
public long lectureTotalDuration { get; set; }
图像显示数据库数据和结构
当我尝试使用 javascript 打印 lectureStartTime
时,它向我展示了 [object Object]
如何打印此 C# TimeSpan 对象
我想打印成 10:00 AM
格式
最佳答案
你不应该这样做吗?
var row = "";
var time = item.lectureStartTime.Hours + " : " + item.lectureStartTime.Minutes + " : " + item.lectureStartTime.Seconds;
jQuery.each(response.content, function (index, item) {
row += "<tr ><td>" + time + " </td> </tr>";
});
$("#tbldialogfacultyclash").html(row);
由于 lectureStartTime 是一个复杂的对象,您必须自己构造字符串。
您还可以在您的模型中添加这样的属性
public string lectureStartTimeStr => $"{lectureStartTime.Hours} : {lectureStartTime.Hours} : {lectureStartTime.Minutes}";
编辑:阅读评论后我改变了我的方法,我认为你正在寻找的是这样的(如果你选择在 ViewModel 中使用该属性)
public string lectureStartTimeStr => $"{lectureStartTime:hh:mm:ss tt}";
这样你的 Javascript 就可以很简单
var row = "";
jQuery.each(response.content, function (index, item) {
row += "<tr ><td>" + item.lectureStartTimeStr + " </td> </tr>";
});
$("#tbldialogfacultyclash").html(row);
关于javascript - 在 javascript 中打印 C# TimeSpan 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45610209/
我使用的语言是 C#。 我有以下困境。 DateTime A,DateTime B。如果 A < B,那么我必须计算该时间跨度内每年的天数,并将其乘以对应于该年的系数。我的问题是它可以跨越多年。 例如
我正在尝试将一些 TimeSpans 加在一起进行一些计算。 例如: var timeSpan1 = new TimeSpan.FromMinutes(1); var timeSpan2 = new
我有一个包含 500 个元素的 C# Queue。 我需要通过将 10 个 TimeSpans 分成一组并选择它们的平均值来将它们减少到 50 个元素。 有没有一种干净的方法来做到这一点?我认为 LI
当我尝试执行以下操作(作为示例)时,我收到了 System.FormatException: TimeSpan ts = XmlConvert.ToTimeSpan("P72H"); 我调查了 ISO
当我在R中运行以下代码时,我得到一个奇怪的注释(它仅在我第一次在 session 中运行代码时出现): > library(lubridate) Attaching package: ‘lubrida
我要实现的是获取从日期时间传递到当前日期时间的年份。 DateTime zeroTime = new DateTime(1, 1, 1); DateTime now = DateTime.Now; T
我遵循这里的建议: What is the correct SQL type to store a .Net Timespan with values > 24:00:00? 在名为 Timeshee
这个问题在这里已经有了答案: How do I convert an ISO8601 TimeSpan to a C# TimeSpan? (3 个答案) 关闭 6 年前。 我已经解析 ISO860
下面的代码工作正常: DateTime d1 = DateTime.Now; DateTime d2 = DateTime.Now.AddDays(-1); int d3 = (int)(d1 - d
我使用 POCO 将 RIA 服务与 Entity Framework 相结合。这一切都非常有效(比 LINQ to SQL 好得多)。我遇到的问题是以下代码段: [Query] public IQu
据我所知,我对 MySql Connector 有疑问。我使用 MySql 和 NHibernate。 我有一个包含这个字段的类: private TimeSpan begin; private Ti
我有 TimeSpan 数据表示为 24 小时格式,例如 14:00:00,我想将其转换为 12 小时格式,下午 2:00,我用 google 搜索并在 stackoverflow 和 msdn 中找
Timespan(0,0,secs) 和 Timespan.FromSeconds(secs) 的返回值有区别吗? 在我看来,不同之处在于 FromSeconds 接受 double。 最佳答案 最终
我正在寻找 .net 3.5 中的解决方案,我编写了以下工作解决方案: private string FormatTimeSpan(TimeSpan time) { return String
C# WPF 应用程序 我有一个 SplashScreen通过使用在启动时显示最短时间 Thread.Sleep(int); //int = milliseconds to display splas
我正在研究 Observable.Generate 的使用,以使用 msdn 网站上的示例作为起点来创建按时间间隔采样的结果序列。 以下没有 TimeSpan 选择器的代码不会出现内存泄漏: IObs
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我的 MVC 应用程序中有这个问题。 我有 TimeSpan,其中包含例如 2 天 15 小时 31 分 34 秒。 我只想显示小时/分钟/秒,问题是我想将天数添加到小时,如 63:31:34 。我尝
我在 visual studio 2008 中开发了一个 Web 程序并将其转换为 2010。在 Datagrid 中,我有一个具有 TimeSpan 值的数据列。在 2008 年,我给了它字符串格式
我是一名优秀的程序员,十分优秀!