因此,我正在使用OCPP 1.6 JSON从收费点通过Web套接字接收JSON。 我正在尝试使用Node.js解析消息并根据消息内容做出适当响应
这是我收到的消息:
[ 2,
'bc7MRxWrWFnfQzepuhKSsevqXEqheQSqMcu3',
'BootNotification',
{ chargePointVendor: 'AVT-Company',
chargePointModel: 'AVT-Express',
chargePointSerialNumber: 'avt.001.13.1',
chargeBoxSerialNumber: 'avt.001.13.1.01',
firmwareVersion: '0.9.87',
iccid: '',
imsi: '',
meterType: 'AVT NQC-ACDC',
meterSerialNumber: 'avt.001.13.1.01' } ]
在这种情况下,这是“ BootNotification”消息,我需要用“ Accepted”消息来响应。
这是我的代码:
const WebSocket = require('ws');
const wss = new WebSocket.Server({ port: 8080 });
wss.on('connection', function connection(ws) {
ws.on('message', function incoming(message) {
//Make incoming JSON into javascript object
var msg = JSON.parse(message)
// Print whole message to console
console.log(msg)
// Print only message type to console. For example BootNotification, Heartbeat etc...
console.log("Message type: " + msg[2])
// Send response depending on what the message type is
if (msg[2] === "BootNotification") {
//Send correct response
} // Add all the message types
});
});
这样,我将消息类型作为字符串打印到控制台:
Message type: BootNotification
所以我的问题是,这是获取消息类型的正确方法吗? 我对此很陌生,所以我想确保。
此处提供了OCPP 1.6 JSON规范:OpenChargeAlliance website
答案 0 :(得分:0)
我想是的。 JSON.parse
是解析JSON字符串的内置函数。万一出了错,它会引发一个错误,因此您可以try/catch
这样做。
由于您得到的响应是一个数组,因此没有其他方法可以使用数字索引访问其项目。
在这种情况下,我个人更喜欢这样的东西:
const handlers = {
'BootNotification': request => { 'msg': 'what a request' }
};
比你可以的
let respone = {'msg': 'Cannot handle this'}
if (handlers.hasOwnProperty(msg[2])) {
response = handlers[msg[2]](msg);
}
但这就是我要走的路。