In “Extract HTML” can JSON Property refer to a value from 2+ steps ago or does it have to be only the last step? if 2+ what would be the syntax for that?
It looks like your topic is missing some important information. Could you provide the following if applicable.
- n8n version:
- Database (default: SQLite):
- n8n EXECUTIONS_PROCESS setting (default: own, main):
- Running n8n via (Docker, npm, n8n cloud, desktop app):
- Operating system:
Hi @yoventures, you can reference data from earlier nodes using expressions such as {{ $('nodeName').item.json.fieldName }}
.
In many cases you would not have to write these yourself but can simply drag and drop the value from the input panel on the left side of your current node.
To do so, first select the node you want to read from in the “Input” dropdown:
Then drag the value into the field you want to use it:
However, the HTML node is different. This expects the name
of a field to read from rather than an expression. So you’d have to use an Edit Fields node like shown above just before your HTML node to fetch the data from a previous node if needed and can then simply reference the field created by this Edit Fields node.
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.