我有一个客户端,它监听两个传感器变量,并连接到Websocket服务器。通过以下实现将这些传感器变量的值发送到websocket服务器:
const ws = new WebSocket("ws://" + host + port);
console.log('sent');
ws.onopen = function (event) {
//listening to sensor values
monitoredItem1.on("changed",function(dataValue){
ws.send(JSON.stringify(" rotation ", dataValue.value.value));
//console.log('sent');
console.log(" % rotation = ", (dataValue.value.value).toString());
});
//listening to sensor values
monitoredItem2.on("changed",function(dataValue){
console.log(" % pressure = ", dataValue.value.value);
ws.send(JSON.stringify(" pressure ", dataValue.value.value));
//console.log('sent');
});
};
服务器看起来像这样:
var Server = require('ws').Server;
var port = process.env.PORT || 8081;
var ws = new Server({port: port});
ws.on("connection", function(w) {
w.on('message', function(msg){
console.log('message from client', msg);
});
});
但是服务器的输出是这样的:
message from client " rotation "
message from client " pressure "
message from client " pressure "
message from client " pressure "
message from client " pressure "
message from client " pressure "
message from client " rotation "
message from client " rotation "
message from client " pressure "
为什么Websocket服务器没有收到号码?即使我将dataValue.value.value
字符串化了,它也不起作用吗?任何想法如何解决这个问题?
谢谢
答案 0 :(得分:2)
似乎您没有正确访问JSON对象,但是我不知道您的JSON结构提供了有关JSON数据的示例。
严格使用JSON时,会使用两个值,例如ws.send(JSON.stringify(" rotation ", dataValue.value.value));
。只会对输出中的" rotation "
部分进行字符串化。
但是,假设您的数据是这样设置的。这就是您访问它的方式。
const data = {
pressure: 'value-pressure',
rotation: 'value-rotation',
embed: {
value: 'value-embed'
}
};
console.log(data.pressure); // value-pressure
console.log(data.rotation); // value-rotation
console.log(data.embed.value) // value-embed
您始终可以在发送之前使用toString()
将其转换为字符串,然后在收到访问JSON的信息后使用JSON.parse
将其重新转换为JSON。
我做了这个小例子,使用JSON.stringify()
进行测试,它发送了它,只是不知道您的数据格式。通过Web套接字发送JSON,然后访问该对象。
const WebSocket = require('ws')
var Server = require('ws').Server;
var port = process.env.PORT || 3000;
var ws = new Server({port: port});
ws.on("connection", function(w) {
w.on('message', function(msg){
let data = JSON.parse(msg);
console.log('Incoming', data.pressure); // Access data.pressure value
});
});
并发送
const WebSocket = require('ws')
const ws = new WebSocket("ws://localhost:3000");
console.log('sent');
ws.onopen = function (event) {
let data = {
pressure: 'value',
rotation: 'rotation',
};
ws.send(JSON.stringify(data)) // Send all the data
};
答案 1 :(得分:0)
尝试在数据周围使用{}使其成为JS对象,并且json.stringify()仅接受一个参数doc here作为要转换的值,这就是第一个参数,为什么只有“压力”正在转换并发送。
ws.send(JSON.stringify({"pressure": dataValue.value.value}));