## 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
3.8 KiB
3.8 KiB
n8n 工作流程輸出查看指南
問題:"Node executed successfully but no output data"
這是正常的!在 n8n 中,你需要點擊節點才能看到輸出資料。
如何查看輸出資料
方法 1: 點擊節點查看
- 執行工作流程後(點擊 Execute Workflow)
- 點擊任何一個節點(Node)
- 在右側面板會顯示該節點的輸出
- 查看 JSON 分頁看到完整資料
方法 2: 查看執行記錄
- 執行工作流程
- 點擊左側的 "Executions" 選單
- 找到最近的執行記錄
- 點擊展開查看每個節點的輸出
方法 3: 使用 Respond to Webhook
如果你想直接看到結果,添加一個 Respond to Webhook 節點:
// 在最後一個節點之後添加:
Node: Respond to Webhook
├── Response Mode: Last Node
└── Response Body: {{ JSON.stringify($json) }}
新增的工作流程
✅ Video Search - Debug Simple
- ID: e2CMjonwILMUYjp0
- URL: https://n8n.momentry.ddns.net/workflow/e2CMjonwILMUYjp0
這個版本保證有輸出!
執行步驟
- 開啟工作流程
- 點擊 "Execute Workflow" ▶️
- 等待執行完成(約 3-5 秒)
- 點擊最後一個節點 "Step 3 - Show Results"
- 查看右側的 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
然後:
- 點擊 Execute Workflow
- 點擊 "Step 3 - Show Results" 節點
- 看右側 JSON 面板
如果仍然看不到資料
檢查:
- ✅ 工作流程已儲存
- ✅ 點擊了正確的節點(有綠色勾的)
- ✅ 右側面板已展開(點擊 JSON 分頁)
- ✅ 沒有紅色錯誤訊息
聯絡支援
如果還是有問題,請告訴我:
- 你點擊的是哪個節點?
- 右側面板顯示什麼?
- 有沒有紅色錯誤訊息?