Good evening
I have a function node that manipulates text and outputs in the following variables.
var out = {payload: [i] + StrIO[i] + Temp[i] };
node.send({payload:out});
I am trying to feed this value into a change node but I have noticed using a debug node that it shows it as payload object not payload string which means the change node does not work.
If I feed my value into the change node using an inject node it works.
So I guess I need to convert the msg object value to a string
Many thanks In anticipation
regards
Andrew