8
n8n 中文网amn8n.com

Unix时间戳转ISO日期转换器

中级

这是一个Building Blocks领域的自动化工作流,包含 6 个节点。主要使用 Set, Webhook, RespondToWebhook 等节点。 Unix时间戳转ISO日期转换器

前置要求
  • HTTP Webhook 端点(n8n 会自动生成)
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
  "id": "nbTOk6E6xwPG6iHB",
  "meta": {
    "instanceId": "1777696fb9fddfee653e70940936c2b1e28ba1f1bde53b7182fbd6eb01988706"
  },
  "name": "Unix 时间戳转 ISO 日期转换器",
  "tags": [],
  "nodes": [
    {
      "id": "9842c1bc-2ec3-467c-93d4-5ca7366b666a",
      "name": "注意:Webhook 输入",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        720,
        -60
      ],
      "parameters": {
        "width": 300,
        "height": 320,
        "content": "此节点监听传入的 POST 请求。它期望一个 JSON 主体,其中包含单个属性:'timestamp'(一个以秒为单位的 Unix 时间戳,例如,1678886400 表示 2023 年 3 月 15 日 00:00:00 UTC)。"
      },
      "typeVersion": 1
    },
    {
      "id": "424230de-0342-4d07-baae-8eece921d9b5",
      "name": "注意:转换逻辑",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1060,
        -60
      ],
      "parameters": {
        "color": 2,
        "width": 300,
        "height": 320,
        "content": "此节点从 webhook 获取 'timestamp',将其乘以 1000(将秒转换为毫秒),然后将其转换为 ISO 8601 格式的字符串(例如 '2023-03-15T00:00:00.000Z')。这个新字符串作为 'convertedTime' 添加。"
      },
      "typeVersion": 1
    },
    {
      "id": "2a945204-1f21-48ed-baac-ac7f0c14424f",
      "name": "注意:Webhook 响应",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        1400,
        -60
      ],
      "parameters": {
        "color": 3,
        "width": 260,
        "height": 320,
        "content": "此节点将 'convertedTime' 作为响应发送回原始 webhook 调用者。它是工作流的最终输出。"
      },
      "typeVersion": 1
    },
    {
      "id": "fe220a53-89d9-4ab0-ab22-67604c27c413",
      "name": "接收时间戳 Webhook",
      "type": "n8n-nodes-base.webhook",
      "position": [
        820,
        100
      ],
      "webhookId": "convert-timestamp-webhook",
      "parameters": {
        "path": "convert-timestamp",
        "options": {},
        "httpMethod": "POST",
        "responseMode": "responseNode"
      },
      "typeVersion": 2
    },
    {
      "id": "a7d7236a-1ee4-4432-bbd6-714f69c7049b",
      "name": "转换为 ISO 8601",
      "type": "n8n-nodes-base.set",
      "position": [
        1160,
        100
      ],
      "parameters": {
        "options": {},
        "assignments": {
          "assignments": [
            {
              "id": "a5991bc4-428d-4f2e-8c94-8943d90eac3d",
              "name": "convertedTime",
              "type": "string",
              "value": "={{ new Date($json.body.timestamp * 1000).toISOString() }}"
            }
          ]
        }
      },
      "typeVersion": 3.4
    },
    {
      "id": "08ebbb83-e4b0-41c2-9390-3a03b31f5396",
      "name": "响应转换后的时间",
      "type": "n8n-nodes-base.respondToWebhook",
      "position": [
        1480,
        100
      ],
      "parameters": {
        "options": {},
        "respondWith": "allIncomingItems"
      },
      "typeVersion": 1.2
    }
  ],
  "active": false,
  "pinData": {},
  "settings": {
    "executionOrder": "v1"
  },
  "versionId": "69561b33-8bab-4460-aaa8-0b092d45bf04",
  "connections": {
    "Convert to ISO 8601": {
      "main": [
        [
          {
            "node": "Respond with Converted Time",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Receive Timestamp Webhook": {
      "main": [
        [
          {
            "node": "Convert to ISO 8601",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}
常见问题

如何使用这个工作流?

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

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

中级 - 构建模块

需要付费吗?

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

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

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

作者
ist00dent

ist00dent

@ist00dent

I’m a dedicated automation engineer passionate about no-code and low-code solutions. I design and implement robust n8n workflows—integrating APIs, databases, and messaging—to eliminate manual tasks and accelerate delivery. Leveraging Python and C#, I build scalable, adaptable automations that empower teams to focus on high-value work.

外部链接
在 n8n.io 查看

分享此工作流