如何使用 moment js utc 时间来获取国家/地区不同的时区

how to use moment js utc time to get a countries different timezone

我有以下填充的时区列表,用户可以select 例子

{name: '(UTC-12:00) International Date Line West', offset: '-12:00:00'}
{name: '(UTC-11:00) Coordinated Universal Time-11', offset: '-11:00:00'}
{name: '(UTC-10:00) Aleutian Islands', offset: '-10:00:00'}
{name: '(UTC-06:00) Guadalajara, Mexico City, Monterrey', offset: '-06:00:00'}
{name: '(UTC-06:00) Saskatchewan', offset: '-06:00:00'}

当用户 select 使用时区时,我如何获得他们 select 使用的时区的实际时间和日期?

我可以得到如下当地时间

var today = Moment();
        this.date = today.format("dddd,D MMM YYYY");
this.times = Moment().format("HH:mm:ss");

但我不确定如何获取不同位置的时区。例如,如果他们 selected (UTC-12:00) 国际日期变更线西 我如何显示该位置的日期和时间?

来自文档的示例:

let moment = require('moment-timezone');
moment().tz("America/Los_Angeles").format();