三星智能电视获得当前时间

时间:2014-05-22 07:17:37

标签: samsung-smart-tv smart-tv smart-tv-alliance

如何获取使用HTML,CSS和JavaScript编写的Samsung SmartTV应用程序的当前时间?

问题出在Javascript Date对象中。当我在Web环境中调用new Date()时,我会收到当前时间的系统日期值。但是当我在SmartTV上实例化日期时,它会返回错误的结果。我期望与网络上的行为相同。在电视设置中,时间设置为自动确定。

只有在第一次电视启动时手动设置时区时才会返回正确的时间。我想这是三星SmartTV平台的错误。

2 个答案:

答案 0 :(得分:4)

我遇到了同样的问题。三星智能电视上的new Date()根据当前设置没有时间,而是获得底层系统时间。它总是返回UTC时间戳。

幸运的是,有一个API函数GetEpochTime(),允许你(有点)修复它。

以下是我在三星平台上使用的代码:

(function (OldDate) {
    // Get a reference to Samsung's TIME API
    var time = document.createElement('object');
    time.setAttribute('classid', 'clsid:SAMSUNG-INFOLINK-TIME');
    document.body.appendChild(time);

    // Replace the existing Date() constructor
    window.Date = function (a, b, c, d, e, f, g) {
        switch (arguments.length) {
            case 0:
                return new OldDate(time.GetEpochTime() * 1000);

            case 1: return new OldDate(a);
            case 2: return new OldDate(a, b);
            case 3: return new OldDate(a, b, c);
            case 4: return new OldDate(a, b, c, d);
            case 5: return new OldDate(a, b, c, d, e);
            case 6: return new OldDate(a, b, c, d, e, f);
            case 7: return new OldDate(a, b, c, d, e, f, g);
        }
    };

    // Copy static function properties
    Date.now   = function () { return time.GetEpochTime() * 1000; };
    Date.UTC   = OldDate.UTC;
    Date.parse = OldDate.parse;
})(Date);

new Date()现在可以在我的2013年三星智能电视上显示当前时间。但是,在将时间戳与当前时间进行比较时,您可能仍会遇到问题。

答案 1 :(得分:3)

在大多数情况下,电视上的时间是正确的,它只是在不同的时区。

例如,此时我附近有2台设备,LG电视显示日期为GMT + 3,三星为GMT + 1。两个设备都显示正确的时间。

如果您需要使用特定时区显示,可以add time zone offset to date

var date = new Date();
var offset = 4 * 3600000;//Moscow(GMT+4)
var userOffset = date.getTimezoneOffset() * 60000;
var fixedTime = new Date(date.getTime() + offset + userOffset);

如果内部电视时钟不可靠,您可以使用web-services to get current time