此处是带有小时和分钟的时间字符串(例如“ 03:37”)。我想更新那个时间的日期对象并在ember JS中创建日期对象。帮帮我时间流逝了24小时。
答案 0 :(得分:0)
使用substring()函数提取小时和分钟。然后使用setHours()函数将它们分配给任何日期对象。
const today = new Date();
const timeString = "03:37";
// Use the substring() function to extract hours and minutes
const hours = timeString.substring(0,2);
const minutes = timeString.substring(3,5);
// Use the setHours() function to assign hours and minutes
// to the "today" date object
const modifiedDate = new Date(today.setHours(hours, minutes));
console.log(modifiedDate);