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


Node.js fs-extra outputJson()用法及代碼示例


outputJson()函數將對象寫入JSON文件。如果用戶想將數據寫入不存在的文件中,它將由函數本身創建。也可以使用outputJSON()代替outputJson()。

用法:

fs.outputJson(file,object,options,callback)

或者

fs.outputJSON(file,object,options,callback)

參數:

  • file:它是一個包含文件路徑的字符串。
  • object:這是一個將被寫入文件的對象。
  • options:它是一個對象,其中包含可以傳遞給函數的可選參數。

1.空格:這是一個數字,用於指定要縮進的空格數或用於縮進的字符串,例如製表符為“ \ t”。



2. EOL:這是換行符。默認情況下,字符為“ \ n”。

3. replacer:這可以是用作字符串化的選定過濾器的函數或數組。如果該值為空或null,則對象的所有屬性都包含在字符串中。

4.它還接受fs.writeFile()選項。

  • callback:函數完成任務後將調用它。這將導致錯誤或成功。也可以用Promise代替回調函數。

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

請按照以下步驟實現該函數:

  1. 可以使用以下命令安裝該模塊:
    npm install fs-extra
  2. 安裝模塊後,可以使用以下命令檢查已安裝模塊的版本:

    npm ls fs-extra

  3. 使用以下命令創建一個名為index.js的文件,並在文件中需要fs-extra模塊:

    const fs = require('fs-extra');
  4. 要運行文件,請在終端中輸入以下命令:



    node index.js

項目結構:項目結構如下所示。

範例1:

index.js

// Requiring module 
import fs from "fs-extra"
  
// This file already 
// exists so function 
// will write onto the file 
const file = "file.json"; 
  
// Object 
// This will be 
// written onto 
// the file 
const object = { 
  name:"GeeksforGeeks", 
  type:"website", 
}; 
  
// Function call 
// Using callback fucntion 
fs.outputJSON(file, object, err => { 
  if(err) return console.log(err); 
  console.log("Object written to given JSON file"); 
});

輸出:

範例2:

index.js

// Requiring module 
import fs from "fs-extra"
  
// This file does not 
// exists so function 
// will create file 
// and write data onto it 
const file = "dir/file.json"; 
  
// Object 
// This will be 
// written onto 
// the file 
const object = { 
  name:"GeeksforGeeks", 
  type:"website", 
}; 
  
// Additional options 
const options = { 
  spaces:2, 
  EOL:"\n", 
}; 
  
// Function call 
// Using Promises 
fs.outputJSON(file, object, options) 
  .then(() => console.log("File created and object written successfully")) 
  .catch((e) => console.log(e));

輸出:

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

相關用法


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