Files
momentry_core/docs/N8N_VIEW_OUTPUT_GUIDE.md
accusys 383201cacd feat: Initial v0.9 release with API Key authentication
## v0.9.20260325_144654

### Features
- API Key Authentication System
- Job Worker System
- V2 Backup Versioning

### Bug Fixes
- get_processor_results_by_job column mapping

Co-authored-by: OpenCode
2026-03-25 14:53:41 +08:00

3.8 KiB
Raw Blame History

n8n 工作流程輸出查看指南

問題:"Node executed successfully but no output data"

這是正常的!在 n8n 中,你需要點擊節點才能看到輸出資料。


如何查看輸出資料

方法 1: 點擊節點查看

  1. 執行工作流程後(點擊 Execute Workflow
  2. 點擊任何一個節點Node
  3. 在右側面板會顯示該節點的輸出
  4. 查看 JSON 分頁看到完整資料

方法 2: 查看執行記錄

  1. 執行工作流程
  2. 點擊左側的 "Executions" 選單
  3. 找到最近的執行記錄
  4. 點擊展開查看每個節點的輸出

方法 3: 使用 Respond to Webhook

如果你想直接看到結果,添加一個 Respond to Webhook 節點:

// 在最後一個節點之後添加:
Node: Respond to Webhook
├── Response Mode: Last Node
└── Response Body: {{ JSON.stringify($json) }}

新增的工作流程

Video Search - Debug Simple

這個版本保證有輸出!

執行步驟

  1. 開啟工作流程
  2. 點擊 "Execute Workflow" ▶️
  3. 等待執行完成(約 3-5 秒)
  4. 點擊最後一個節點 "Step 3 - Show Results"
  5. 查看右側的 JSON 分頁

預期看到的輸出

{
  "status": "SUCCESS",
  "query": "charade",
  "totalResults": 2,
  "firstHit": {
    "text": "fun plot twists, Woody Dialog and charming perform...",
    "time": "48.8s - 55.44s",
    "score": "53%"
  }
}

或如果失敗:

{
  "status": "FAILED",
  "error": "error message here"
}

截圖說明

執行後的畫面

┌─────────────────────────────────────┐
│  When clicking "Execute Workflow"   │ ✅  (綠色勾)
├─────────────────────────────────────┤
│  Step 1 - Set Query                 │ ✅  (綠色勾)
├─────────────────────────────────────┤
│  Step 2 - Call API                  │ ✅  (綠色勾) ← 點擊這裡
├─────────────────────────────────────┤
│  Step 3 - Show Results              │ ✅  (綠色勾) ← 或這個
└─────────────────────────────────────┘

[右側面板 - 點擊節點後顯示]
┌─────────────────────────────────────┐
│  Node: Step 2 - Call API            │
│                                     │
│  [JSON] [Table] [Schema]            │ ← 點擊 JSON
│                                     │
│  {                                  │
│    "success": true,                 │
│    "query": "charade",              │
│    ...                              │
│  }                                  │
└─────────────────────────────────────┘

快速測試

如果不想用瀏覽器,直接在這裡執行:

# 開啟簡化版工作流程
open https://n8n.momentry.ddns.net/workflow/e2CMjonwILMUYjp0

然後:

  1. 點擊 Execute Workflow
  2. 點擊 "Step 3 - Show Results" 節點
  3. 看右側 JSON 面板

如果仍然看不到資料

檢查:

  1. 工作流程已儲存
  2. 點擊了正確的節點(有綠色勾的)
  3. 右側面板已展開(點擊 JSON 分頁)
  4. 沒有紅色錯誤訊息

聯絡支援

如果還是有問題,請告訴我:

  1. 你點擊的是哪個節點?
  2. 右側面板顯示什麼?
  3. 有沒有紅色錯誤訊息?