我怎样才能获得我的时区的位置或位置?我正在使用angularjs,我使用格式'Z'但只显示数值。我是否有可能获得每个时区的具体位置?非常感谢你
答案 0 :(得分:0)
您可以尝试以下解决方案:(链接参考https://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)