我是 Vue.js 的新手,我遇到了一個問題,我無法在本地 JSON 文件中更新/寫入一些數(shù)據(jù)。假設我有 data.json我想在這個文件中添加一個新條目。我使用基本代碼: let d = JSON.stringify({ x: 5, y: 6 }); const fs = require('fs'); try { fs.writeFileSync('data.json', d, 'utf-8'); } catch (e) { alert(e); }結果我收到一條錯誤消息:“類型錯誤:fs.writeFileSync 不是函數(shù)”我該如何解決這個問題?
在 Vue.js 中更新本地 JSON 文件
吃雞游戲
2023-05-18 10:10:14