我正在使用MediaWiki的UTCLiveClock.js,我正在尝试将其配置为在PST / PDT中显示时间。我以为我解决了问题,但是当午夜UTC点击(00:00:00)时,它将我的时间输出更改为0-7:00:00。我需要正确显示,以便在UTC 00:00:00 - 07:00:00发生时,我的时间显示看起来并不是一团糟。我通过mediawiki使用的小工具可以在https://www.mediawiki.org/wiki/MediaWiki:Gadget-UTCLiveClock.js
找到是的,我是一个菜鸟。我没有任何正式的编程知识。我只是试图为服务器存在于PST / PDT并遇到此问题的游戏构建一个wiki。谷歌搜索关键字搜索过去3个小时让我无处可去。请帮忙。
*/
/*global mw, $, UTCLiveClockConfig:true */
mw.loader.using(['mediawiki.util', 'mediawiki.api', 'mediawiki.notify']).then( function () {
var $target;
function showTime( $target ) {
var now = new Date();
var hh = now.getUTCHours();
var mm = now.getUTCMinutes();
var ss = now.getUTCSeconds();
var time = ( hh < 10 ? '0' + hh : hh ) + ':' + ( mm < 10 ? '0' + mm : mm ) + ':' + ( ss < 10 ? '0' + ss : ss );
$target.text( time );
var ms = now.getUTCMilliseconds();
setTimeout( function () {
showTime( $target );
}, 1100 - ms );
}
function liveClock() {
mw.util.addCSS( '#utcdate a { font-weight:bolder; font-size:120%; }' );
if ( !window.UTCLiveClockConfig ) {
UTCLiveClockConfig = {};
}
var portletId = UTCLiveClockConfig.portletId || 'p-personal';
var nextNode = UTCLiveClockConfig.nextNodeId ? document.getElementById( UTCLiveClockConfig.nextNodeId ) : undefined;
var node = mw.util.addPortletLink(
portletId,
mw.util.getUrl( null, { action: 'purge' } ),
'',
'utcdate',
null,
null,
nextNode
);
if ( !node ) {
return;
}
$( node ).on( 'click', function ( e ) {
new mw.Api().post( { action: 'purge', titles: mw.config.get( 'wgPageName' ) } ).then( function () {
location.reload();
}, function () {
mw.notify( 'Purge failed', { type: 'error' } );
} );
e.preventDefault();
} );
showTime( $( node ).find( 'a:first' ) );
}
$( liveClock );
} );
编辑:
我最初解决问题的方法是在小时部分输入-7:
var hh = now.getUTCHours()-7;
答案 0 :(得分:1)
看起来这是非常简单的Gadget,仅限于UTC时间。几乎没有选择。
要编写自己的脚本,有关键部分。
function get_PST_PDT_offset() {
/* You have to rewrite this function from time to time. */
var now = new Date();
var change = new Date(2016, 11, 5, 19, 0); /* 2016-11-06 2:00 PST */
if (now >= change) {
return -8;
} else {
return -7;
}
}
function showTime( $target ) {
var now = new Date();
var hh = now.getUTCHours();
var offset = get_PST_PDT_offset();
hh = (hh + offset + 24) % 24;
var mm = now.getUTCMinutes();
/* ... */