所以当我有tampermonkey时,会将一些数据打印到Google的控制台中。 输出为数组。 我可以简单地使其像在eventStream数据上显示的那样进行读取。(给出eventStream的URL,在代码中。)
var evtSource = new EventSource("http://colorillo.com/_watch//_index? _=1559553617984", { withCredentials: true } );
evtSource.onmessage = function(e) {
var obj = JSON.parse(e.data);
console.log(obj.line) // This is the piece that prints. "line" data from the eventStream.
因此可以使其像原始形式一样在控制台中显示吗?不成数组。 (如下所示)。
[[155,110],[159,111],[159,111],[163,113],[163,113],[167,116],[167,116],[174,119],[174,119],[178,122],[178,122],[182,124],[182,124],[186,127],[186,127],[189,129],[189,129],[190,129],[190,129],[193,129],[193,129],[194,129],[194,129],[194,130],[194,130]]