📜  Node.js fs-extra readJson()函数

📅  最后修改于: 2022-05-13 01:56:56.269000             🧑  作者: Mango

Node.js fs-extra readJson()函数

readJson()函数读取一个 JSON 文件,然后将其解析为一个对象。如果文件不存在,则会抛出错误。 readJSON()也可以用来代替 readJson()。

句法:

fs.readJson(file,options,callback)

要么

fs.readJSON(file,options,callback)

参数:

  • file:它是一个包含文件路径的字符串。
  • options:是一个可选参数,可以传入函数中。选项与fs.readFile()选项相同。
  • callback:函数完成任务后调用。这将导致错误或将 JSON 数据存储在文件中的对象。 Promise 也可以用来代替回调函数。

返回值:它不返回任何东西。

按照以下步骤实现该函数:

  1. 可以使用以下命令安装该模块:
    npm install fs-extra
  2. 安装模块后,您可以使用以下命令检查已安装模块的版本:

    npm ls fs-extra

  3. 3. 创建一个名为 index.js 的文件,并使用以下命令在文件中要求 fs-extra 模块:

    const fs = require('fs-extra');
  4. 要运行该文件,请在终端中写入以下命令:

    node index.js

项目结构:项目结构将如下所示。

示例 1:

index.js
// Requiring module
import fs from "fs-extra"
  
// File path
const file = "file.json";
  
// Function call
// Using callback function
fs.readJson(file, (err, object) => {
  if (err) return console.log(err);
  console.log(object);
});


index.js
// Requiring module
import fs from "fs-extra"
  
// File path
const file = "file.json";
  
// Function call
// Using Promises
// readJSON can be
// used in place of
// readJson as well
fs.readJSON(file)
  .then((object) => console.log(object))
  .catch((e) => console.log(e));


输出:

示例 2:

index.js

// Requiring module
import fs from "fs-extra"
  
// File path
const file = "file.json";
  
// Function call
// Using Promises
// readJSON can be
// used in place of
// readJson as well
fs.readJSON(file)
  .then((object) => console.log(object))
  .catch((e) => console.log(e));

输出:

参考: https://github.com/jprichardson/node-fs-extra/blob/HEAD/docs/readJson.md