0

我喜欢在 node.js 中更新一个 javascript 文件(模块)然后保存它。我有以下 js 模块。

var test = {
   scripts: ["a.js","b.js"],
   getScripts: function()
   {
        return this.scripts;
   }
}

module.exports = test;

我喜欢在其他模块中加载上述模块,然后更新脚本数组,然后将其保存回文件。我尝试使用JSON.stringify(test),但它不保留 getScripts 方法。

这有什么技巧或窍门吗?

4

1 回答 1

0

您几乎需要阅读 using 中的脚本readfile,对数组进行文本操作scripts,然后使用writefile.

于 2012-06-05T05:58:48.813 回答