如何获取时区的位置?我使用angularjs,我使用的格式是"Z",但只显示数值。我是否也可以得到每个时区的具体位置?非常感谢
您可以在下面尝试此解决方案:(link refhttps://github.com/michaelahlers/angular-timezones/blob/master/docs/examples/filters.js)
(function (angular) {
var application = angular.module('application', ['Timezones'])
application.constant('$timezones.definitions.location', '/tz/data')
application.controller('World', function ($scope) {
var now = $scope.now = Date.now()
$scope.examples = [
{ timezone : 'Pacific/Honolulu', reference : now },
{ timezone : 'America/Los_Angeles', reference : now },
{ timezone : 'America/Chicago', reference : now },
{ timezone : 'America/New_York', reference : now },
{ timezone : 'Europe/Berlin', reference : now },
{ timezone : 'Asia/Tokyo', reference : now },
{ timezone : 'Australia/Sydney', reference : now },
{ timezone : 'Etc/GMT+12', reference : now }
]
})
})(angular)