programing

moment.js가 포함된 최신 문자열 구문 분석

goodsources 2022. 10. 1. 15:20
반응형

moment.js가 포함된 최신 문자열 구문 분석

다음 문자열을 moment.js 2014-02-27과 함께 해석하고 싶습니다.T10:00:00 및 출력일월년(2014년 3월 14일)에 문서를 읽고 있지만 성공하지 못했습니다.http://momentjs.com/docs/ #/filen/now/

나는 항상 제목과 질문이 잘 맞지 않는다는 것을 깨닫고 이곳에 도착한 것 같다.

문자열에서 모멘트 날짜를 원하는 경우:

const myMomentObject = moment(str, 'YYYY-MM-DD')

문서 작성 시점부터:

기본 Date.protype을 수정하는 대신 Moment.js는 Date 개체의 래퍼를 만듭니다.

문자열에서 javascript Date 개체를 원하는 경우:

const myDate = moment(str, 'YYYY-MM-DD').toDate();

를 사용해야 합니다..format()기능.

MM- 월 번호

MMM- 월간 단어

var date = moment("2014-02-27T10:00:00").format('DD-MM-YYYY');
var dateMonthAsWord = moment("2014-02-27T10:00:00").format('DD-MMM-YYYY');

바이올린을 켜다

입력 형식은 표준 형식이므로 moment.js를 해석할 필요가 없습니다.

var date = new Date('2014-02-27T10:00:00');
var formatted = moment(date).format('D MMMM YYYY');

http://es5.github.io/ #x15.9.1.15

그 순간은 내가 필요로 하는 것에 완벽했다.시간과 분을 무시하고 그대로 두면 됩니다.API를 호출하면 날짜와 시간이 돌아오기 때문에 저에게 완벽했습니다만, 저는 날짜만 신경쓰고 있습니다.

function momentTest() {

  var varDate = "2018-01-19 18:05:01.423";
  var myDate =  moment(varDate,"YYYY-MM-DD").format("DD-MM-YYYY");
  var todayDate = moment().format("DD-MM-YYYY");  
  var yesterdayDate = moment().subtract(1, 'days').format("DD-MM-YYYY");   
  var tomorrowDate = moment().add(1, 'days').format("DD-MM-YYYY");

  alert(todayDate);

  if (myDate == todayDate) {
    alert("date is today");
  } else if (myDate == yesterdayDate) {
    alert("date is yesterday");
  } else if (myDate == tomorrowDate) {
    alert("date is tomorrow");
  } else {
    alert("It's not today, tomorrow or yesterday!");
  }
}
  • 문자열 날짜를 개체 날짜로 변경하는 방법(moment.js도 포함):

let startDate = "2019-01-16T20:00:00.000"; let endDate = "2019-02-11T20:00:00.000"; let sDate = new Date(startDate); let eDate = new Date(endDate);

  • 모멘트와 함께.filename:

startDate = moment(sDate); endDate = moment(eDate);

IE8용 국제 폴리필 또는 olyfill 서비스를 사용해 보는 것은 어떨까요?

또는

https://github.com/andyearnshaw/Intl.js/

언급URL : https://stackoverflow.com/questions/22184747/parse-string-to-date-with-moment-js

반응형