聊聊怎麼用node寫入讀取檔案內容

2022-12-22 22:00:33
怎麼進行讀寫操作?下面本篇文章給大家介紹一下使用node.js寫入讀取檔案內容的基礎方法,希望對大家有所幫助!

Node.js是一個基於Chrome V8引擎的JavaScript執行環境。【相關教學推薦:、】

4a057ec865dd4494a995478a479f9f60.png

區分版本號

LTS為長期穩定版,推薦安裝LTS版本的Node.js. Current為新特性嚐鮮版,對熱衷於嘗試新特性的同學來說,推薦安裝Current版本的Node.js。

讀取檔案內容

使用readFile讀取檔案內容

讀取失敗是一個error物件

成功的話就是undefined

// 1.匯入fs模組,操作檔案
const fs = require('fs');
// 2.呼叫readFile() 方法 來讀取檔案
// 第一個引數是被讀取檔案的路徑
// 第二個引數是編碼格式
// 第三個引數是回撥函數,拿到讀取成功(dataStr)或者是失敗的結果 (err)
fs.readFile('./file/01.text', 'utf8', function (err, dataStr) {
    console.log(err);// 列印失敗的結果
    console.log("---------------------");
    console.log(dataStr);// 列印成功的結果
})
登入後複製

2e67e466ac5c4e79aaeb251c83c7e2bf.png

判斷檔案是否讀取成功

const fs = require('fs');

fs.readFile('./file/01.txt', 'utf8', function (err, dataStr) {
    if (err) {
        return console.log('讀取失敗!' + err.message);
    }
    console.log('讀取成功!' + dataStr);
})
登入後複製

成功

314677cb87ea4aa8af3925fd62d25603.png

失敗

093414cf200e4a12bbfbda1788bb495d.png

使用writeFile寫入檔案內容

const fs = require('fs');
// 三個引數
// 引數1表示檔案存放路徑
// 引數2表示要寫入檔案的內容
// 引數3回撥函數
fs.writeFile('./file/02.text', 'Aic大山魚', function (err) {
    // 寫入成功後err的值就是null,且在該資料夾下生成一個02檔案 
    if (err) {
        return console.log('檔案寫入失敗!' + err.message);
    }
    console.log('檔案寫入成功!');
})
登入後複製

a2a21db6b0fd41babe8991dabf60a704.png

整理資料

思維梳理

要求:把一個檔案的內容整理起來,放到另一個檔案名字和分數用冒號分隔開

1.匯入需要的fs檔案系統模組

2.使用fs.readFile0方法,讀取素材目錄下的report-card.txt檔案

3.判斷檔案是否讀取失敗

4.檔案讀取成功後,處理成績資料

5.將處理完成的成績資料,呼叫fs.writeFile0 方法,寫入到新檔案report-card(1).txt中

// 匯入fs模組
const fs = require('fs');
// 呼叫resdFile()方法 讀取檔案
fs.readFile('./file/report-card.txt', 'utf8', function (err, dataStr) {
    toString(dataStr);
    // 判斷是否讀取成功
    if (err) {
        return console.log('讀取失敗!' + err.message);
    }
    // 把獲取到的成績用逗號分隔開儲存
    const arrOld = dataStr.split(',');
    // 迴圈分割後的每一個陣列,進行字串的替換操作
    const arrNew = [];
    // item代表要遍歷那個陣列裡的每一項
    arrOld.forEach(item => {
        // 把=替換成:
        arrNew.push(item.replace('=', ':'))
    });
    // 把新陣列的每一項進行合併得到新的字串
    const newStr = arrNew.join('\n');
    // 使用writeFile()方法,把處理完畢的資料寫入到新檔案中
    fs.writeFile('./file/report-card(1).txt', newStr, function (err) {
        if (err) {
            return console.log('寫入失敗!' + err.message);
        }
        console.log('寫入成功!');
    })
})
登入後複製

路徑動態拼接處理問題

在使用fs模組操作檔案時,如果提供的操作路徑是以/或./開頭的相對路徑時,很容易出現路徑動態拼接錯誤的問題。

原因:程式碼在執行的時候,會以執行node命令時所處的目錄,動態拼接出被操作檔案的完整路徑。

// __dirname 表示當前檔案所處的目錄
const fs = require('fs');
// 使用方法
fs.readFile(__dirname + '/file/01.txt', 'utf8', function (err, dataStr) {
    if (err) {
        return console.log('讀取失敗!' + err.messages);
    }
    console.log('讀取成功!' + dataStr);
})
登入後複製

path模組是Node.js官方提供的、用來處理路徑的模組。它提供了一系列的方法和屬性, 用來滿足使用者對路徑的處理需求。

●path.join()方法,用來將多個路徑片段拼接成一個完整的路徑字串

●path.basename()方法,用來從路徑字串中,將檔名解析出來

const path = require('path');
// ../會抵消一層路徑
const pathStr = path.join('/a', '/v', '../', '/d', 'c');
console.log(pathStr);
登入後複製
const path = require('path');
const fs = require('fs');
fs.readFile(path.join(__dirname, +'/file/01.txt'), 'utf8', function (err, dataStr
) {
    if (err) {
        return console.log(err.message);
    }
    console.log(dataStr);
})
登入後複製

path.basename使用

const path = require('path');
const fpath = '/a/d/c/index.html'
const fullName = path.basename(fpath);
console.log(fullName);
// 移除字尾名
const nameWithoutExt = path.basename(fpath, '.html');
console.log(nameWithoutExt);
登入後複製

獲取路徑中擴充套件名檔案

path.extname()方法

const path = require('paht');
const fpath = '/a/s/d/f/index.html'// 路徑字串
const fext = path.extname('fpath');
console.log(fext);// 輸出.html
登入後複製

寫在最後

我是,感謝您的支援
原 創 不 易 ✨還希望支援一下
點贊?:您的讚賞是我前進的動力!
收藏⭐:您的支援我是創作的源泉!
評論✍:您的建議是我改進的良藥!
山魚?社群:??

更多node相關知識,請存取:!

以上就是聊聊怎麼用node寫入讀取檔案內容的詳細內容,更多請關注TW511.COM其它相關文章!