當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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); 
});

輸出:

範例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

相關用法


注:本文由純淨天空篩選整理自pritishnagpal大神的英文原創作品 Node.js fs-extra readJson() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。