Menu

Thursday, March 18, 2021

[NodeJS] วิธีการนำเข้าไฟล์ JSON ไปยังตัวแปรและการส่งออกค่าตัวแปรไปยังไฟล์ JSON (การอ่านและเขียนไฟล์ JSON)
[NodeJS] How to Import JSON File to Variable and Export Variable to JSON File (Reading and Writing JSON file to/from Variable)

สมมติว่า เรามีไฟล์ JSON อยู่ที่ ./resources/symbols.json และเราจะใช้ตัวแปรชื่อ symbols ในการเก็บค่าที่อ่านได้จากไฟล์ JSON  
เราสามารถอ่านไฟล์ JSON แล้วเก็บค่าเข้าตัวแปรได้ดังนี้
const symbols = require('./resources/symbols.json');
ในทางกลับกัน ถ้าเราต้องการเขียนค่าของตัวแปรออกมาเป็นไฟล์ JSON เราจะใช้วิธีดังนี้
const fs = require('fs');
const jsonData = JSON.stringify(symbols, null, 4); // third parameter defines white-space insertion for pretty-printing
fs.writeFileSync('./resources/symbols.json', jsonData);