0
は私がノード-赤に新たなんだと私はDOCここhttp://nodered.org/docs/writing-functions.html
の例次の新しい変数を作成しようとしてきたコードです:オブジェクトmsgから変数を取り出す方法は?
// initialise the counter to 0 if it doesn't exist already
var count = context.get('count')||0;
count += 1;
// store the value back
context.set('count',count);
// make it part of the outgoing msg object
msg.count = count;
return msg;
しかし、私はトラブル変数MSGを使用してい。カウント。 {msg.count}
や{msg.get('count')}
などの複数の試行で値を印刷しようとしましたが、毎回undefined
と書きます。
可変数はどのように印刷できますか?
これはフローがどのように見えるかで、スイッチは単にmsg.countの値をチェックします。
'msg.count'にアクセスしようとしている場所を説明する必要があります。フロー(またはスクリーンショット)の説明が役立ちます。 – hardillb