MomentJS-게터 / 세터
MomentJS에는 날짜 입력을 가져 오거나 설정하는 많은 방법이 있습니다. Get을 사용하면 필요한 입력 단위를 읽을 수 있고 설정을 통해 입력 단위를 수정할 수 있습니다. 이 장에서는 현재 사용되는 get / set 메서드에 대해 자세히 설명합니다.
다음 표는 사용 가능한 get / set 메소드를 보여줍니다.
방법 | 통사론 |
---|---|
밀리 초 | moment (). millisecond (숫자) moment (). millisecond (); moment (). milliseconds (Number); moment (). milliseconds (); |
둘째 | moment (). second (번호); moment (). second (); moment (). seconds (숫자); moment (). seconds (); |
분 | moment (). minute (숫자); moment (). minute (); moment (). minutes (숫자); moment (). minutes (); |
시 | moment (). date (번호); moment (). date (); moment (). dates (숫자); moment (). dates (); |
요일 | moment (). day (숫자 | 문자열); moment (). day (); moment (). days (숫자 | 문자열); moment (). days (); |
날짜 | moment (). date (번호); moment (). date (); moment (). dates (숫자); moment (). dates (); |
연중 일 | moment (). dayOfYear (Number); moment (). dayOfYear (); |
연중 주 | moment (). week (숫자); moment (). week (); moment (). weeks (숫자); moment (). weeks (); |
연중 주 (ISO) | moment (). isoWeek (번호); moment (). isoWeek (); moment (). isoWeeks (숫자); moment (). isoWeeks (); |
달 | moment (). month (숫자 | 문자열); moment (). month (); |
쿼터 | moment (). quarter (); moment (). quarter (숫자); moment (). quarters (); moment (). quarters (숫자); |
년 | moment (). year (숫자); moment (). year (); |
Week year | moment (). weekYear (Number); moment (). weekYear (); |
Weeks in year | moment (). weeksInYear (); |
가져 오기 | moment (). get ( '연도'); moment (). get ( '월'); moment (). get ( '날짜'); moment (). get ( '시간'); moment (). get ( '분'); moment (). get ( '초'); moment (). get ( '밀리 초'); |
세트 | moment (). set (String, Int); moment (). set (Object (String, Int)); |
최고 | moment.max (Moment [, Moment ...]); moment.max (Moment []); |
최저한의 | moment.min (Moment [, Moment ...]); moment.min (Moment []); |