我有一个 JSON 模块,其中包含这样的空容器:
{
"files": {
"rootNeeded":[],
"folders":[],
"files":[],
"images":[],
"text":[],
"unknown":[]
},
}
我想知道我是否可以简单地通过使用array.push
方法将数据从另一个模块推送到这里。就像是 ...
var myModule=require("./myJsonFile");
function(){
some magic here...
myModule.files.files.push(files);
}
在此之后我可以在第三个节点模块中使用它......
//my third module
console.log(files.files)
最后每次调用的程序都会被刷新,就像动态数据库一样。