swsnu / swpp2020-team13

Goaling Ball: Your goal management service.
0 stars 3 forks source link

Handling DataTime (from backend to frontend) #13

Open ChanwooLucioLee opened 3 years ago

ChanwooLucioLee commented 3 years ago
  1. Backend Import python datetime library. datetime.timestamp() will convert datetime into seconds from epoch(Jan 1st, 1970) Send it.

  2. Frontend Import moment library. You can format a given seconds as you want.

jiyewise commented 3 years ago

Thanks!