尝试打印到控制台日志中的websocket提供的json数据中的值
下面的代码将来自websocket的所有json数据打印到控制台日志中。
// require ws
const WebSocket = require('ws');
//messsage sent to ws server
var msg =
{"jsonrpc": "2.0",
"method": "public/subscribe",
"id": 42,
"params": {
"channels": ["deribit_price_index.btc_usd"]}
};
// WS connection url
var ws = new WebSocket('wss://test.deribit.com/ws/api/v2');
//ws response
ws.onmessage = function (e) {
// do something with the notifications...
console.log('server : ', e.data);
};
//stringify json data
ws.onopen = function () {
ws.send(JSON.stringify(msg));
};
预期结果:
server : 5457.21
server : 5457.19
server : 5457.15
实际结果:
server : {"jsonrpc":"2.0","method":"subscription","params":{"channel":"deribit_price_index.btc_usd","data":{"timestamp":1556209117657,"price":5457.21,"index_name":"btc_usd"}}}
server : {"jsonrpc":"2.0","method":"subscription","params":{"channel":"deribit_price_index.btc_usd","data":{"timestamp":1556209117657,"price":5457.19,"index_name":"btc_usd"}}}
答案 0 :(得分:1)
JSON.parse()
这是您可以使用的方式:
//This will turn it into an object you can navigate with '.params.data.price'
try {
console.log('server: ', JSON.parse(e.data).params.data.price);
} catch {}
答案 1 :(得分:0)
您正在记录e.data
中的所有内容。
从实际结果json来看,好像您要e.data.params.data.price
正如Robofan所说,您需要先对其进行解析。
console.log('server : ', e.data);
-> console.log('server : ', JSON.parse(e).params.data.price);