我喜欢在 node.js 中更新一个 javascript 文件(模块)然后保存它。我有以下 js 模块。
var test = {
scripts: ["a.js","b.js"],
getScripts: function()
{
return this.scripts;
}
}
module.exports = test;
我喜欢在其他模块中加载上述模块,然后更新脚本数组,然后将其保存回文件。我尝试使用JSON.stringify(test),但它不保留 getScripts 方法。
这有什么技巧或窍门吗?