这个功能出了什么问题?
if (msg.payload == “high”) {
return [ msg, null, null ];
}
else if (msg.payload == “med”) {
return [ null, msg, null ];
}
else {
return [null, null, msg];
}
我正在接收
SyntaxError: Unexpected token ILLEGAL
我在节点红色编码,想要在函数中创建并返回多个消息,读取一个msg.payload并将其发送到3个不同的输出。 感谢。
答案 0 :(得分:2)
假设逐字复制并粘贴它将是字符串文字的开始和结束引号
你的代码已经“绕过字符串而不是”应该使用它。