테스트 코드
//main.js
import momnet from 'moment-timezone'
...
methods: {
...
convertTimeZoneTest(){
sys_time = '1583282193434.118'
let base_time = moment(sys_time).tz('Asia/Seoul')
console.log(base_time.format()) //2020-03-04T09:36:33+09:00
let conv_time = moment(sys_time).tz('Europe/London')
console.log(conv_time.format()) //2020-03-04T00:36:33Z
},
convertFormatter(){
sys_time = '1583282193434.118'
let base_time = moment(sys_time).tz('Asia/Seoul')
console.log(base_time.format('YYYY/MM/DD h:mm:ss a')) //2020/03/04 9:36:33 am
console.log(base_time.format('DD-MM-YYYY HH:mm:ss A')) //04-03-2020 09:36:33 AM
...
},
...
},
...
(참고문헌)
간단한 DDR bandwidth 성능 테스트 측정 (0) | 2021.03.03 |
---|---|
hostapd 데몬을 이용한 wifi usb 동글 AP 모드 사용 (3) | 2020.07.16 |
sqlite3 cross compile 및 c언어로 간단한 테스트 진행 (0) | 2019.09.23 |
error: stray '\357' in program 오류 해결방법 (0) | 2018.12.18 |
tcpdump 크로스 컴파일 (cross compile arm) (2) | 2018.12.14 |