gpt4 book ai didi

javascript - 在 javascript 中,如何使用 fs.writeFile 并循环数组并在新文本文件中垂直完全打印数组中的每个项目

转载 作者:行者123 更新时间:2023-11-30 19:11:10 25 4
gpt4 key购买 nike

我正在尝试使用 fs.writeFile 从字符串数组循环以创建新的文本文件。我使用 fs.writeSync 并且它有效。但是,当我使用 fs.writeFile 时,我创建的文本文件中的内容并未显示数组中的每一项。相反,结果更像是我的数组中的一些不完整的字符串。我使用 setTime() 函数将其设置为 3 秒,但仍然没有在我的文本文件中显示完整的结果。

fs.writeSync 完美运行

function fileWriteSync(filePath) {
const fd = fs.openSync(filePath, 'w');
for (var i = 0; i < tips.length; i++) {
fs.writeSync(fd, tips[i] + '\n');
console.log(tips[i]);
}

fs.closeSync(fd);
}

tips = [
"Work in teams",
"get enough sleep",
"be on time",
"Rely on systems",
"Create a rough weekly schedule",
"Get rid of distractions before they become distractions",
"Develop good posture",
"Don’t multitask",
"Cultivate the belief that intelligence isn’t a fixed trait",
"Work in short blocks of time", "Exercise regularly",
"Be organized", "Break big tasks into smaller ones",
"Take notes during class", "Ask lots of questions",
"Eat healthily",
"Do consistent work",
"Manage your thoughts and emotions",
"Give yourself rewards",
"Manage your stress"
]


function fileWrite2(savePath) {
setTimeout(() => {
for (var i = 0; i < tips.length; i++) {
fs.writeFile(savePath, tips[i] + "\n", function(err) {
if (err) throw err;
});
}
console.log('File written sucessfully');
}, 3000);
}
fileWrite2('tips3.txt')

我当前的输出:

管理压力s和情绪ence不是固定的特征

最佳答案

writeFile 的工作方式是它不是附加到文件而是替换文件中的文本。这就是您获得输出的原因。

您可以改为使用函数 appendFile。

function fileWrite2(savePath) {
setTimeout(() => {
for (var i = 0; i < tips.length; i++) {
fs.appendFile(savePath, tips[i] + "\n", function(err) {
if (err) throw err;
});
}
console.log('File written sucessfully');
}, 3000);
}

关于javascript - 在 javascript 中,如何使用 fs.writeFile 并循环数组并在新文本文件中垂直完全打印数组中的每个项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58460766/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com