我有这个fs.writeFile代码,假设将newWorkout POST到数据库时会更新localdata.json文件,这会获取本地状态数据以尝试写入该文件。
它不会工作,并抛出一个TypeError:fs.writeFile不是函数错误..现在进行修复,但如果有人看到任何帮助,将不胜感激。
fs.writeFile(
"./localdata.json",
JSON.stringify(newWorkout.eventDateTime),
"utf-8",
function(err) {
if (err) throw err
console.log("Done!")
}
)
答案 0 :(得分:0)
您包括了吗
var fs = require("fs");
...the rest of your code...
答案 1 :(得分:0)
Given that you are working in a Node.js environment, is seems like fs
is not a proper Node.js File System object. Copied from the Node.js 10.x documentation:
要使用此模块:
const fs = require('fs');
答案 2 :(得分:0)
Nodes File System不能在“浏览器端”使用,这些调用是在服务器端发生的。