想象你是一名厨师并且你有一个帮手。你的工作是做饭,但首先,你需要从商店购买一些特殊的食材。你让你的助手去商店,当他们回来时,他们告诉你他们有食材,这样你就可以继续做饭了。
首先,确保您安装了 Node.js。如果没有,您可以从nodejs.org下载并安装它。
然后,打开终端并通过运行以下命令安装 node-fetch 包:npm install node-fetch
以下示例展示了如何使用回调函数从 API 获取真实数据。
// Function that fetches data from the API and then calls the helper (callback) const fetchData = async (callback) => { console.log('Fetching ingredients from the store...'); try { const fetch = (await import("node-fetch")).default; const response = await fetch('https://jsonplaceholder.typicode.com/posts/1'); const data = await response.json(); console.log('Ingredients have been fetched.'); callback(data); // Calling the helper (callback) with the fetched ingredients } catch (error) { console.error('Error fetching ingredients:', error); } }; // Implementing and passing the helper (callback) to fetchData fetchData((data) => { console.log('Processing the fetched ingredients:', data); });
1/ 函数 fetchData:
2/ 回调函数:
在 VS Code 中打开终端(或使用命令行)并导航到 fetchDataExample.js 文件所在的目录。然后使用 Node.js 通过以下命令运行此文件:node fetchDataExample.js
当您运行此代码时,您应该看到如下内容:
Fetching ingredients from the store... Ingredients have been fetched. Processing the fetched ingredients: { userId: 1, id: 1, title: '...', body: '...' }
以上是通过实际示例了解回调函数的详细内容。更多信息请关注PHP中文网其他相关文章!