Not exactly. Not getting the correct answer.
say one function returns ABCD
another EFGH
This is for concatenation:
module.exports = function(RED) {
function LowerCaseNode(config) {
RED.nodes.createNode(this,config);
var node = this;
this.on('input', function(msg) {
//msg.payload = msg.payload.toLowerCase();
msg.payload = msg.payload.concat();
node.send(msg);
});
}
RED.nodes.registerType("lower-case",LowerCaseNode);
}
I am not writing anything inside function node, I am creating one node that accept msgs and then concatenate them all. It may look like my previous query. Because there also I was not able to handle multiple msg and I didn't get my solution.
This is output of debug node
10/20/2014, 12:48:50 PM[409ff976.bf6008]ABCD
10/20/2014, 12:48:50 PM[409ff976.bf6008]EFGH
As I said ABCD from function node 1
EFGH from function node 2
now I want something like
10/20/2014, 12:48:50 PM[409ff976.bf6008]ABCDEFGH
ie. just one output after processing it in my concatenation node. But I am unable to do that
My node wiring looks like:
