gpt4 book ai didi

javascript - javascript/nodejs 中的 require 是否每次在另一个模块中导入时都会执行相同的文件?

转载 作者:行者123 更新时间:2023-12-04 03:31:45 26 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





How requiring a module on entry point makes available on other modules on NodeJS?

(1 个回答)


去年关闭。




是否 require()在 JavaScript/Node.js 中每次导入其他模块时执行相同的文件?
如果是,我怎样才能在一个文件中有一个数组并从另一个 JS 文件中追加/更新其中的值?
例如,我在一个文件中有一个数组,我正在从多个文件更新数组,我希望它们都只与更新后的数组交互。我怎样才能做到这一点?

最佳答案

模块被缓存,如果您再次加载它们,则会加载缓存的副本。
https://nodejs.org/api/modules.html#modules_require_cache

Modules are cached in this object when they are required. By deletinga key value from this object, the next require will reload the module.This does not apply to native addons, for which reloading will resultin an error.

Adding or replacing entries is also possible. This cache is checkedbefore native modules and if a name matching a native module is addedto the cache, no require call is going to receive the native moduleanymore. Use with care!


您可以使用 https://www.npmjs.com/package/clear-module
const clearModule = require('clear-module');
const myArray = clearModule('./myArray'); // but you need load this everytime to get fresh copy of that array
相反,您可以从模块中公开一个函数来读取数组值,因此它将始终获取一个新值。
myArray.js
const myArray = [1];

const get = () => {
return myArray;
};

const update = (data) => {
myArray.push(data);
};

exports.get = get;
exports.update = update;
index.js
const myArray = require('./myArray');

console.log(myArray.get()); // [1]
console.log(myArray.update(2)); // update the value
console.log(myArray.get()); // [1,2]
所以现在使用 myArray.get()总是读取值并使用 myArray.update(data)来更新。

关于javascript - javascript/nodejs 中的 require 是否每次在另一个模块中导入时都会执行相同的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66647911/

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