我有一个下拉菜单可以在 UI 中选择时区。 从 Windows 时区设置下拉列表中获取的下拉数据
如果登录用户选择了某个时区,我必须根据所选时区格式使用 DST 显示所有日期时间字段。
打字稿ts代码
import * as moment from 'moment';
import * as momenttimezone from 'moment-timezone';
private ConvertServerTimezoneToClient(dateTime: string, dateFormat: string, timeFormat: string, timezoneFormat: string, isDstzone: string) {
timeFormat = timeFormat.toString().indexOf('tt') > -1 ? timeFormat.replace('tt', 'a') : timeFormat;
var convertedTime = '';
if (timezoneFormat && timezoneFormat != '' && timezoneFormat != "null") {
if (isDstzone == 'true') {
momenttimezone.tz.add(''); // need to map
momenttimezone.tz.link(''); // need to map
var zoneName = ''; // need to map
var isDstDate = momenttimezone.tz(new Date(dateTime), zoneName).isDST();
if (isDstDate) {
convertedTime = moment(dateTime).zone(timezoneFormat).add(1, 'hours').format(dateFormat + ' ' + timeFormat);
} else {
convertedTime = moment(dateTime).zone(timezoneFormat).format(dateFormat + ' ' + timeFormat);
}
}
else {
convertedTime = moment(dateTime).zone(timezoneFormat).format(dateFormat + ' ' + timeFormat);
}
}
return convertedTime
}
Moment js 有更多时区格式 https://github.com/moment/moment-timezone/blob/develop/data/packed/latest.json
如何将 windows 时区映射到时刻时区。UI 基本代码使用 aurelia typescript。需要帮忙。