꿈꾸는 시스템 디자이너

Node.js와 Mongoose(MongoDB)를 이용할 때 Date format 처리 방법 본문

Web Service/Node.js

Node.js와 Mongoose(MongoDB)를 이용할 때 Date format 처리 방법

독행소년 2017. 4. 10. 22:39

Node.js와 Mongoose를 이용해서 데이터를 저장하는 방법


Mongoose를 이용해 스키마를 정의할 때 다음과 같이 선언하면 데이터가 추가될 때 마다 syncTime이란 컬럼명으로 당시의 시간값이 자동으로 저장된다.


const MyModel = new Schema({

    ID: String,

    name: String,

    syncTime: {type: Date, default: Date.now}

});



저장된 값을 find해서 ejs를 통해 웹페이지에 뿌려보면 다음과 같이 표시된다. 보기에 좋지 않다.

* createTime은 로컬DB에 저장된 시간이고 syncedTime은 서버DB(MongoDB)에 저장된 시간 값이다.


원하는 표시 방식은 createTime과 같은 포맷으로 다음과 같다.


방법은 여러개가 있을 수 있는데 제일 편리한 방법은 moment 모듈을 이용하는 것이다.


npm 명령어를 통해 moment를 설치하고, 해당 js파일에 모듈을 추가한다.

그리고 ejs로 데이터를 넘길때 moment 모듈도 함께 전달한다.

                 res.writeHead(200, {

                    'Content-Type': 'text/html;charset=UTF-8'

                });

                res.end(ejs.render(data, {

                    archives: archives,

                    moment

                }));


HTML파일 내에서 moment 모듈을 이용해 원하는 date format을 설정한다.

<td>

      <%= mement(archives[i].syncTime).format('YYYY-MM-DD hh:mm:ss') %>

      <!--<%= archives[i].syncTime %>-->

</td>



format 설정 관련해서는 moment 모듈 공식 문서를 참고한다.


https://momentjs.com/ 


Comments