v1助手 - 查找含受影响表达式的参数
初级
这是一个Other领域的自动化工作流,包含 4 个节点。主要使用 N8n, Code, ManualTrigger 等节点。 v1助手 - 查找含受影响表达式的参数
前置要求
- •无特殊前置要求,导入即可使用
使用的节点 (4)
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"id": "zlHbtHIcCZ9enKwg",
"meta": {
"instanceId": "406f1bca875c48c0fa12bf65a32e67f001617a6df6d6fd6dd72bff9d20014812"
},
"name": "v1 助手 - 查找含受影响表达式的参数",
"tags": [],
"nodes": [
{
"id": "b3dd44ca-960f-4689-9545-30a05dc0441e",
"name": "当点击\"执行工作流\"时",
"type": "n8n-nodes-base.manualTrigger",
"position": [
580,
320
],
"parameters": {},
"typeVersion": 1
},
{
"id": "96db239d-05b6-4e1d-b101-e66c2a9708f6",
"name": "n8n",
"type": "n8n-nodes-base.n8n",
"position": [
800,
320
],
"parameters": {
"filters": {
"activeWorkflows": true
}
},
"credentials": {
"n8nApi": {
"id": "hcJ2iZYYgs54eCaT",
"name": "n8n account"
}
},
"typeVersion": 1
},
{
"id": "b2286f6b-ba37-433c-b22a-95032bc25b6e",
"name": "查找含受影响表达式的参数",
"type": "n8n-nodes-base.code",
"position": [
1040,
320
],
"parameters": {
"jsCode": "const AFFECTED_EXTENSIONS = ['beginningOf', 'endOfMonth', 'minus', 'plus'];\n\nconst isExpression = (value) => typeof value === 'string' && value.startsWith('={{');\n\nconst containsAny = (str, substrings) => {\n for (const substring of substrings) {\n if (str.includes(substring)) return true;\n }\n \n return false;\n}\n\nconst isAffected = (value) => isExpression(value) && containsAny(value, AFFECTED_EXTENSIONS);\n\nfunction findParamsByTest(target, test) {\n const parameterNames = [];\n\n function search(obj) {\n if (typeof obj === 'object') {\n for (const key in obj) {\n const value = obj[key];\n\n if (test(value)) {\n parameterNames.push(key);\n } else if (typeof value === 'object') {\n search(value);\n }\n }\n }\n }\n\n search(target);\n\n return parameterNames;\n}\n\nreturn $input.all().reduce((allLocations, { json: workflow }) => {\n const perWorkflow = workflow.nodes.reduce((allLocationsPerWorkflow, node) => {\n const perNode = findParamsByTest(node.parameters, isAffected).map(\n (parameterName) => {\n\t\treturn {\n\t\t\tworkflowName: workflow.name,\n\t\t\tnodeName: node.name,\n\t\t\tparameterName,\n };\n },\n );\n\n return [...allLocationsPerWorkflow, ...perNode];\n }, []);\n\n return [...allLocations, ...perWorkflow];\n}, []);"
},
"typeVersion": 1
},
{
"id": "ee189fa0-cf89-4b8d-8351-ed9598f18502",
"name": "便签1",
"type": "n8n-nodes-base.stickyNote",
"position": [
600,
92
],
"parameters": {
"width": 548.6551724137931,
"height": 191.08045977011497,
"content": "## v1 助手"
},
"typeVersion": 1
}
],
"active": false,
"pinData": {},
"settings": {},
"versionId": "da694734-30ae-46b1-8e29-877c95b670ab",
"connections": {
"n8n": {
"main": [
[
{
"node": "Find params with affected expressions",
"type": "main",
"index": 0
}
]
]
},
"When clicking \"Execute Workflow\"": {
"main": [
[
{
"node": "n8n",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
初级 - 其他
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
备份工作流到 GitHub(子文件夹)
备份工作流到 GitHub(子文件夹)
If
N8n
Set
+12
25 节点Nazmy
其他
备份工作流到 GitHub
备份工作流到 GitHub
If
N8n
Set
+12
23 节点Solomon
其他
使用n8n API在实例间克隆n8n工作流
使用n8n API在实例间克隆n8n工作流
N8n
Set
Code
+7
17 节点Alex Kim
其他
钓鱼分析_URLScan_io 和 VirusTotal_
钓鱼分析 - URLScan.io 和 VirusTotal
If
Code
Wait
+10
23 节点n8n Team
安全运维
使用AI SQL代理查询n8n凭据
使用AI SQL代理查询n8n凭据
N8n
Set
Code
+7
13 节点Jimleuk
其他
在两个应用之间同步新数据
在两个应用之间同步新数据
Code
Filter
Google Sheets
+3
9 节点n8n Team
销售
工作流信息
难度等级
初级
节点数量4
分类1
节点类型4
作者
n8n Team
@n8n-teamMeet the official n8n team. We specialize in building workflows that transform intricate tasks into seamless operations.
外部链接
在 n8n.io 查看 →
分享此工作流