当前位置: 首页 > news >正文

【n8n教程笔记——工作流Workflow】文本课程(第一阶段)——5.5 计算预订订单数量和总金额 (Calculating booked orders)

https://docs.n8n.io/courses/

文章目录

  • 5. Calculating Booked Orders
    • About the Code node
    • Configure the Code node
    • What's next?

5. Calculating Booked Orders

In this step of the workflow you will learn how n8n structures data and how to add custom JavaScript code to perform calculations using the Code node. After this step, your workflow should look like this:

在这里插入图片描述

The next step in Nathan’s workflow is to calculate two values from the booked orders:

  • The total number of booked orders
  • The total value of all booked orders

To calculate data and add more functionality to your workflows you can use the Code node, which lets you write custom JavaScript code.

About the Code node

Code node modes
The Code node has two operational modes, depending on how you want to process items:

  • Run Once for All Items allows you to write code to process all input items at once, as a group.
  • Run Once for Each Item executes your code once for each input item.

Learn more about how to use the Code node.

In n8n, the data that’s passed between nodes is an array of objects with the following JSON structure:

[{"json": { // (1)!"apple": "beets","carrot": {"dill": 1}},"binary": { // (2)!"apple-picture": { // (3)!"data": "....", // (4)!"mimeType": "image/png", // (5)!"fileExtension": "png", // (6)!"fileName": "example.png", // (7)!}}},...
]
  1. (required) n8n stores the actual data within a nested json key. This property is required, but can be set to anything from an empty object (like {}) to arrays and deeply nested data. The code node automatically wraps the data in a json object and parent array ([]) if it’s missing.
  2. (optional) Binary data of item. Most items in n8n don’t contain binary data.
  3. (required) Arbitrary key name for the binary data.
  4. (required) Base64-encoded binary data.
  5. (optional) Should set if possible.
  6. (optional) Should set if possible.
  7. (optional) Should set if possible.

You can learn more about the expected format on the n8n data structure page.

Configure the Code node

Now let’s see how to accomplish Nathan’s task using the Code node.

In your workflow, add a Code node connected to the false branch of the If node.
在这里插入图片描述
在这里插入图片描述

With the Code node window open, configure these parameters:

  • Mode: Select Run Once for All Items.
    在这里插入图片描述

  • Language: Select JavaScript.
    在这里插入图片描述

Using Python in code nodes
While we use JavaScript below, you can also use Python in the Code node. To learn more, refer to the Code node documentation.

  • Copy the Code below and paste it into the Code box to replace the existing code:

    // Get all input data and store it in a variable called "items"
    // $input.all() is a special function that gets all the data passed to this script
    let items = $input.all();// Count how many items we have by checking the length of the items array
    // Arrays in JavaScript have a .length property that tells you how many elements they contain
    let totalBooked = items.length;// Create a variable to hold the total sum of prices, starting at 0
    // This will be our running total as we add up all the prices
    let bookedSum = 0;// Start a loop to go through each item in our list
    // The loop will run once for each item in the array
    for (let i = 0; i < items.length; i++) {// Inside the loop:// 1. i starts at 0 (first item)// 2. We keep looping while i is less than the number of items// 3. After each loop, i increases by 1 (moves to next item)// Add the current item's price to our running total// items[i] gets the item at position i// .json is an object that contains data about this item// .orderPrice is a specific value inside that object representing the pricebookedSum = bookedSum + items[i].json.orderPrice;
    }// After processing all items, return our results
    // We create an array with one object that contains both totals
    // The object has two properties: totalBooked (count of items) and bookedSum (total price)
    return [{ json: { totalBooked, bookedSum } }];
    

    在这里插入图片描述

Notice the format in which we return the results of the calculation:

return [{ json: {totalBooked, bookedSum} }]

Data structure error
If you don’t use the correct data structure, you will get an error message: Error: Always an Array of items has to be returned!

Now select Execute step and you should see the following results:
在这里插入图片描述

Code node output
Code node output

What’s next?

Nathan 🙋: Wow, the Code node is powerful! This means that if I have some basic JavaScript skills I can power up my workflows.

You 👩‍🔧: Yes! You can progress from no-code to low-code!

Nathan 🙋: Now, how do I send the calculations for the booked orders to my team’s Discord channel?

You 👩‍🔧: There’s an n8n node for that. I’ll set it up in the next step.

http://www.dtcms.com/a/301876.html

相关文章:

  • Rouge:面向摘要自动评估的召回导向型指标——原理、演进与应用全景
  • 分表分库与分区表
  • Android启动时间优化大全
  • 蛋白质反向折叠模型-ProteinMPNN安装教程
  • 学习日志20 python
  • 【unitrix】 6.18 二进制小数特质(t_decimal.rs)
  • EPOLLET 边缘触发模式深度解析
  • 抗辐照芯片在低轨卫星星座CAN总线通讯及供电系统的应用探讨
  • vue3的一些浅显用法
  • Day06–哈希表–242. 有效的字母异位词,349. 两个数组的交集,202. 快乐数,1. 两数之和
  • 浙大公开课—基于深度学习的特征匹配与姿态估计
  • (补题)拼图游戏
  • EPOLLIN事件的详细解析
  • 【时时三省】(C语言基础)指针数组和多重指针
  • MySQL 8.4 Windows 版安装记录与步骤参考
  • 【C语言网络编程基础】DNS 协议与请求详解
  • Context Engineering Notes
  • 持续优化Cypress自动化测试
  • FunctionCall 如何使用以及如何训练
  • 从MySQL的information_schema系统数据库中获取表的元数据信息
  • Dify 1.7.0 新特性解析:工作流革新与多模态能力突破
  • 基于springboot的在线购票系统/在线售票系统
  • WSL切换网络模式
  • 【通识】正则表达式
  • 一些免费的线上学习网站
  • 《前端缓存系统构建:浏览器与Service Worker的自动清理与命中率优化策略》
  • 影刀RPA_初级课程_玩转影刀自动化_网页操作自动化
  • Frontiers in Psychology投稿LaTeX(三)
  • Frontiers in Psychology投稿流程(二)
  • BUG记录——Request接传Json数据中文乱码