Overview
This node, named "vscSecond Node," is a simple transformation tool designed to modify incoming JSON data by appending a user-provided string with a fixed Korean phrase. It processes each input item individually and adds or updates the myString field in the JSON output with the concatenated result.
Practical scenarios for this node include:
- Adding a custom suffix or note to existing string data within workflow items.
- Demonstrating basic string manipulation within an n8n workflow.
- Serving as a template or starting point for more complex string transformations.
Example: If the input item has no myString field, and the user inputs "Test", the output's myString will be "Test을(를) 입력 하였습니다.".
Properties
| Name | Meaning |
|---|---|
| My String | A user-defined string that will be appended with the fixed Korean text "을(를) 입력 하였습니다." and set into the output JSON's myString field. |
Output
The node outputs the same number of items as it receives. Each output item's JSON contains a myString property whose value is the user input string concatenated with the Korean phrase "을(를) 입력 하였습니다.".
Output example JSON structure per item:
{
"myString": "<user input>을(를) 입력 하였습니다."
}
No binary data is produced by this node.
Dependencies
- No external services or API keys are required.
- The node relies solely on n8n's internal framework and standard JavaScript.
Troubleshooting
Common issues:
- If the input data is empty or missing, the node will still run but output items will only contain the modified
myStringfield. - Errors during execution will either stop the workflow or, if "Continue On Fail" is enabled, add error details to the output.
- If the input data is empty or missing, the node will still run but output items will only contain the modified
Error messages:
- Errors thrown during parameter retrieval or processing will include the item index for easier debugging.
- To resolve errors, ensure that the input data is correctly formatted and that the "My String" property is properly set.