节点 'writefile' 添加而不是替换
Node 'writefile' Add Instead of Replace
有没有什么方法可以让我写入文件并让它简单地添加任何新数据而不是替换以前的数据?
目前,我正在使用 CasperJS 提取页面上的项目列表,并在 Node 上使用 fs.write 来保存它。
我想制作一个大列表并在每次 运行 脚本时添加到其中,而不是每次都有单独的条目。
或者,有没有办法在 Node 中组合多个 HTML 文件?
您可以使用 fs.appendFile
而不是 fs.write
。来自文档:
Asynchronously append data to a file, creating the file if it does not yet exist.
有没有什么方法可以让我写入文件并让它简单地添加任何新数据而不是替换以前的数据?
目前,我正在使用 CasperJS 提取页面上的项目列表,并在 Node 上使用 fs.write 来保存它。
我想制作一个大列表并在每次 运行 脚本时添加到其中,而不是每次都有单独的条目。
或者,有没有办法在 Node 中组合多个 HTML 文件?
您可以使用 fs.appendFile
而不是 fs.write
。来自文档:
Asynchronously append data to a file, creating the file if it does not yet exist.