8
n8n 中文网amn8n.com

Flutterflow应用的低代码API

中级

这是一个Engineering, Product, Building Blocks领域的自动化工作流,包含 8 个节点。主要使用 Set, Webhook, Aggregate, RespondToWebhook, N8nTrainingCustomerDatastore 等节点。 Flutterflow应用的低代码API

前置要求
  • HTTP Webhook 端点(n8n 会自动生成)
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "meta": {
    "instanceId": "dbd43d88d26a9e30d8aadc002c9e77f1400c683dd34efe3778d43d27250dde50"
  },
  "nodes": [
    {
      "id": "646662d1-92dc-406a-8dc6-581a4a6d69cd",
      "name": "客户数据存储(n8n 培训)",
      "type": "n8n-nodes-base.n8nTrainingCustomerDatastore",
      "position": [
        580,
        660
      ],
      "parameters": {
        "operation": "getAllPeople"
      },
      "typeVersion": 1
    },
    {
      "id": "4926678b-cd17-4e7a-b8af-db649f17e442",
      "name": "插入变量",
      "type": "n8n-nodes-base.set",
      "position": [
        880,
        660
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "de2360fb-1b29-4524-a035-1a76abf4ae2e",
              "name": "students",
              "type": "object",
              "value": "={{ $json }}"
            }
          ]
        }
      },
      "typeVersion": 3.3
    },
    {
      "id": "43c716b1-626e-47cd-b1df-1c7ca486fcd4",
      "name": "聚合变量",
      "type": "n8n-nodes-base.aggregate",
      "position": [
        1060,
        660
      ],
      "parameters": {
        "options": {},
        "fieldsToAggregate": {
          "fieldToAggregate": [
            {
              "fieldToAggregate": "students"
            }
          ]
        }
      },
      "typeVersion": 1
    },
    {
      "id": "325b44ba-5297-496a-8351-4cc00b34e2f2",
      "name": "便签",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        220,
        540
      ],
      "parameters": {
        "color": 4,
        "width": 218.82012248136226,
        "height": 321.21203744835316,
        "content": "### 流程在收到 HTTP GET 调用时开始"
      },
      "typeVersion": 1
    },
    {
      "id": "a57c08ca-60bd-43e5-aefa-269b05bc0f01",
      "name": "便签1",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        480,
        540
      ],
      "parameters": {
        "color": 7,
        "width": 314.179182099464,
        "height": 320.43858635231027,
        "content": "### 您可以在此处更改为您的数据库节点"
      },
      "typeVersion": 1
    },
    {
      "id": "becb82a0-d2bc-40d3-a293-7f75939a8878",
      "name": "便签2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        840,
        540
      ],
      "parameters": {
        "color": 7,
        "width": 364.9476455365474,
        "height": 318.43858635231027,
        "content": "### 将数据转换为 Flutterflow 响应所需的步骤"
      },
      "typeVersion": 1
    },
    {
      "id": "d76acd26-5c0c-4b1e-b673-b63697c9c98a",
      "name": "收到新的 Flutterflow 调用时",
      "type": "n8n-nodes-base.webhook",
      "position": [
        280,
        660
      ],
      "webhookId": "203c3219-5089-405b-8704-3718f7158220",
      "parameters": {
        "path": "203c3219-5089-405b-8704-3718f7158220",
        "options": {},
        "responseMode": "responseNode"
      },
      "typeVersion": 2
    },
    {
      "id": "05a1efd1-beb2-4953-90c7-6e1df98b74f8",
      "name": "响应 Flutterflow",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        1280,
        660
      ],
      "parameters": {
        "options": {},
        "respondWith": "json",
        "responseBody": "={{ $json }}"
      },
      "typeVersion": 1.1
    },
    {
      "id": "c4272529-1d96-48b9-b390-6bf847af7454",
      "name": "便签3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        220,
        300
      ],
      "parameters": {
        "width": 457,
        "height": 201,
        "content": "## 用于 Flutterflow 应用的低代码 API"
      },
      "typeVersion": 1
    }
  ],
  "pinData": {},
  "connections": {
    "Aggregate variable": {
      "main": [
        [
          {
            "node": "Respond to flutterflow",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "insert into variable": {
      "main": [
        [
          {
            "node": "Aggregate variable",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "On new flutterflow call": {
      "main": [
        [
          {
            "node": "Customer Datastore (n8n training)",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Customer Datastore (n8n training)": {
      "main": [
        [
          {
            "node": "insert into variable",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。

这个工作流适合什么场景?

中级 - 工程, 产品, 构建模块

需要付费吗?

本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。

工作流信息
难度等级
中级
节点数量8
分类3
节点类型6
难度说明

适合有一定经验的用户,包含 6-15 个节点的中等复杂度工作流

外部链接
在 n8n.io 查看

分享此工作流