Html node: Maximum call stack size exceeded

Instead of processing those html nodes at the same time, can you try to select the elements in sequence ?
and instead of selecting the td select the tr and split it with javascript

Example ( used a File read node - didnt have the zip node )

[{"id":"efe9f1abd4037791","type":"debug","z":"5847b7aa62131d37","name":"2","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":630,"y":1580,"wires":[]},{"id":"3bb2d8cffde10fa0","type":"debug","z":"5847b7aa62131d37","name":"3","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"true","targetType":"full","statusVal":"","statusType":"auto","x":990,"y":1660,"wires":[]},{"id":"074c9da903370f34","type":"html","z":"5847b7aa62131d37","name":"","property":"payload","outproperty":"headers","tag":".header","ret":"text","as":"single","x":500,"y":1660,"wires":[["efe9f1abd4037791","6926418f3f603813"]]},{"id":"396fbd4c01e6c35e","type":"file in","z":"5847b7aa62131d37","name":"read file","filename":"c:\\share\\Excel - CPI (COICOP) from January 2008 (202108).xls","format":"utf8","chunk":false,"sendError":false,"encoding":"none","allProps":false,"x":330,"y":1660,"wires":[["257483723eec8e17","074c9da903370f34"]]},{"id":"95e2bec020123878","type":"inject","z":"5847b7aa62131d37","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"","payloadType":"date","x":160,"y":1660,"wires":[["396fbd4c01e6c35e"]]},{"id":"257483723eec8e17","type":"debug","z":"5847b7aa62131d37","name":"1","active":false,"tosidebar":true,"console":false,"tostatus":false,"complete":"payload","targetType":"msg","statusVal":"","statusType":"auto","x":430,"y":1580,"wires":[]},{"id":"a6f3982a843f1c10","type":"function","z":"5847b7aa62131d37","name":"","func":"msg.data = msg.data.map(el => {\n    return el.trim().split(\"\\n\")\n})\n\n\n\nreturn {\n    payload: {\n        headers: msg.headers,\n        data: msg.data\n    }\n};","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":820,"y":1660,"wires":[["3bb2d8cffde10fa0"]]},{"id":"6926418f3f603813","type":"html","z":"5847b7aa62131d37","name":"","property":"payload","outproperty":"data","tag":"tr","ret":"text","as":"single","x":670,"y":1660,"wires":[["a6f3982a843f1c10"]]}]
2 Likes