이 기사는 일반적으로 사용되는 Date 객체의 캡슐화 방법과 발생한 문제에 대한 해결책을 제공합니다. 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
JS에서 Date 객체를 오랫동안 사용해왔지만, 자주 사용하는 encapsulation 기능과 제가 겪은 함정은 다음에 직접 사용할 수 있도록 오늘 시간이 나면 기록해 두겠습니다. 그리고 그 함정에 직면했습니다. 혹시 잘못된 부분이 있다면 지적해주시면 감사하겠습니다.
날짜(시, 분, 초 제외)를 타임스탬프로 변환할 때 날짜가 '-'(2019-01-01) 및 '/'(2019/01/01)로 연결되면 타임스탬프로의 변환은 다음과 같습니다. 차이점은
모두가 너무 많은 예제를 보고 지루해하지 않도록 결론부터 시작하겠습니다.
결론:
1) '-'를 사용하여 날짜를 연결한 경우 월과 일이 9보다 작고 앞에 0을 추가한 다음 타임스탬프로 변환하면 시간이 해당 날짜의 오전 8시로 변환됩니다. Point
2) 날짜를 '-'로 연결한 경우, 월과 일이 9보다 작고 9보다 작은 앞에 0이 있으면 타임스탬프로 변환하면 시간 기본적으로 오전 8시를 현재일로 변환합니다
3) '-'를 사용하여 날짜를 연결한 경우, 월과 일이 모두 9보다 작고 하나만 앞에 0이 붙는 경우에는 a로 변환됩니다. 타임스탬프를 사용하면 기본적으로 현재 날짜로 변환되어 오전 12시는 00:00
4) '-'를 사용하여 날짜를 연결한 경우 월과 일이 9보다 큰 경우 변환하면 타임스탬프로 변환하면 기본적으로 오전 8시로 변환됩니다
5) 날짜를 '/'로 연결하면 타임스탬프로 변환하면 오전 00시로만 변환됩니다. the day
요약: 날짜를 타임스탬프로 변환할 때, 시와 분을 설정하지 않은 경우, 같은 날짜에 대해 다른 방식으로 쓰여졌을 때 다른 타임스탬프를 얻지 않도록 '/'를 사용하여 연결하는 것이 가장 좋습니다
다음은 결론을 증명하는 예:
" let time1 = new Date('2019-03-03').getTime(); let time2 = new Date('2019/3/3').getTime(); console.log('获取时间') console.log(time1) console.log(time2) console.log( (time1-time2) / 1000 /60 /60 ) // 8 // 根据本地格式,把Date对象的时间转换为字符串 上午12:00:00也就是 00:00:00 console.log(new Date('2019-03-03').toLocaleString()) // 2019/3/3 上午8:00:00 console.log(new Date('2019-03-12').toLocaleString()) // 2019/3/12 上午8:00:00 console.log(new Date('2019-11-03').toLocaleString()) // 2019/11/3 上午8:00:00 console.log(new Date('2019-3-03').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019-03-3').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019-11-13').toLocaleString()) // 2019/11/13 上午8:00:00 console.log(new Date('2019/03/03').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019/3/3').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019/03/3').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019/3/03').toLocaleString()) // 2019/3/3 上午12:00:00 console.log(new Date('2019/03/12').toLocaleString()) // 2019/3/12 上午12:00:00 console.log(new Date('2019/11/03').toLocaleString()) // 2019/11/3 上午12:00:00 "
1. 将日期格式转换为时间戳的三种方法 "javascript let dateStr = new Date('2019-3-20 18:59:39:123'); let timestamp1 = dateStr.getTime(); // 1553079579123 let timestamp2 = dateStr.valueOf(); // 1553079579123 let timestamp3 = Date.parse(dateStr); // 1553079579000 " date.getTime()、date.valueOf()会精确到毫秒,而Date.parse(date)只能精确到秒,毫秒用000替代 2. 将时间戳转换为日期格式 "javascript function dateFormat(timestamp) { timestamp = (timestamp + '' ).length > 10 ? timestamp : timestamp * 1000; //判断时间戳为几位,10位时加上毫秒,13为的则不管 let date = new Date(timestamp); let year = date.getFullYear(); let month = date.getMonth() + 1 > 9 ? date.getMonth() + 1 : '0' + (date.getMonth() + 1); // 月份从0开始,0~11, 所以显示时要 +1 let day = date.getDate() > 9 ? date.getDate() : '0' + date.getDate() ; let hour = date.getHours() > 9 ? date.getHours() : '0' + date.getHours() ; let minutes = date.getMinutes() > 9 ? date.getMinutes() : '0' + date.getMinutes(); let seconds = date.getSeconds() > 9 ? date.getSeconds() : '0' + date.getSeconds(); return year + '-' + month + '-' + day + ' ' + hour + ':' + minutes + ':' + seconds; } "
/** * @method 计算两个日期之间有几天,包括第一天 * @param beginTime 开始时间的日期 '2019-3-19' || '2019/3/19' * @param endTime 结束时间的日期 '2019-3-20' || '2019/3/19' */ getIntervalDay('2019-03-03', '2019-03-8'); // 若是没有用 正则将格式转换的话得到的结果是5天,转换后是6天 function getIntervalDay(beginTime, endTime) { // 先利用将其转换为统一的格式,因为 '-' 格式下的时间戳转换的结果不一致,原因在本文的开头 beginTime = beginTime.replace(/\-/g, '/'); endTime = endTime.replace(/\-/g, '/'); let time1 = new Date(beginTime).getTime(); let time2 = new Date(endTime).getTime(); // console.log(beginTime) // console.log(endTime) let second = time2 - time1; let day = parseInt(second / (1000 * 60 * 60 * 24)) + 1; // 当天也算进去 return day; }
// 闰年为366天(2月中多一天),平年为365天。 // 闰年有两种: 1)普通闰年:能被4整除但不能被100整除的年份为普通闰年。 // 2)世纪闰年:能被400整除的为世纪闰年。 function getYearAllDay(year) { return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0 ? 366 : 365; }
// date格式为 'xxxx-xx-xx' 'xxxx/xx/xx' 'xxxx/xx' 'xxxx-xx' function getMonthAllDay(date) { date = new Date(date); let year = date.getFullYear(); let month = date.getMonth() + 1; // 从 Date 对象返回月份 (0 ~ 11)。 let nextMonth = year + '-' + (month + 1); let newDate = new Date(nextMonth); newDate.setDate(0); // 利用设置日期时从1~31设置,当设置为0时,即上个月的最后一天 return newDate.getDate(); }
위 내용은 Date 객체에 일반적으로 사용되는 캡슐화 방법 및 발생한 문제에 대한 솔루션의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!