繁体   English   中英

用使用 lightstreamer 的网站时间更新客户端时间

[英]updating client time with website time that uses lightstreamer

我想通过使用Lightstreamer更新时间的网站更新我的电脑的时间。 在chrome devtools的debugging选项卡中,发现时间值更新在哪一行:

    define("lscAZ", ["LoggerManager", "IllegalArgumentException", "lscAe"], function (d, f, b) {
    function a(a, b, c, d, f) { this.Ay = b; this.zy = a; this.qu = d; this.ma = c; **this.Sd = f** } var c = d.getLoggerProxy(b.Ok); a.prototype = {
        Bm: function () { return this.zy }, lj: function () { return this.Ay }, getValue: function (a) { a = this.ei(a); return (a = this.Sd[a]) && a.QC ? a.value : a }, Cr: function (a) { a = this.ei(a); return !this.Sd.Ao[a] }, py: function () { return this.qu }, forEachChangedField: function (a) {
            for (var b = this.Sd.Mc, f = 0; f < b.length; f++) {
                var k = this.ma.getName(b[f]),
                h = this.Sd[b[f] + 1]; try { a(k, b[f], h) } catch (l) { c.logErrorExc(l, d.resolve(402)) }
            }
        }, Eq: function (a) { for (var b = 2; b < this.Sd.length; b++) { var f = b - 1, k = this.ma.getName(f), h = this.Sd[b]; try { a(k, f, h) } catch (l) { c.logErrorExc(l, d.resolve(403)) } } }, ei: function (a) { a = isNaN(a) ? this.ma.oe(a) : a; if (null == a) throw new f("the specified field does not exist"); if (0 >= a || a > this.ma.ym() + 1) throw new f("the specified field position is out of bounds"); return a + 1 }, cx: function () { return this.Sd.length - 2 }, Kw: function (a) { return this.ma.getName(a) }
    };
    a.prototype.getItemName = a.prototype.Bm; a.prototype.getItemPos = a.prototype.lj; a.prototype.getValue = a.prototype.getValue; a.prototype.isValueChanged = a.prototype.Cr; a.prototype.isSnapshot = a.prototype.py; a.prototype.forEachChangedField = a.prototype.forEachChangedField; a.prototype.forEachField = a.prototype.Eq; return a
});

在这段代码中,值Sdf属于网站的时间。 问题是我不知道在哪里可以找到f的计算过程以及如何调用上面的代码 function 在控制台中捕获这个值(我什至无法识别 function 的名称。),另一方面. 时钟由 function 更新,该时钟使用此 function 的 output 作为 updateInfo 命名构造并在网站中使用它。 这些都是自动的,我需要以更少的间隔手动完成。

f的计算对我来说更有用,因为这个值被格式化为字符串并且不包含毫秒(格式化为 hh:mm:ss)。

Lightstreamer的配置如下

 /*
 * LIGHTSTREAMER - www.lightstreamer.com
 * Lightstreamer Web Client
 * Version 7.2.0 build 1777
 * Copyright (c) Lightstreamer Srl. All Rights Reserved.
 * Contains: LightstreamerClient, Subscription, ConnectionSharing, SimpleLoggerProvider
 *   ConsoleAppender, Promise
 * Globals
 */

请注意,从版本 8.0.0 开始,Lightstreamer Web 客户端 SDK 库是开源的,可以在httpsLighterstream/github -client-stream/javascript/

这可能对您的努力有所帮助。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM