执行需要内容多一次

时间:2018-03-20 03:44:57

标签: node.js require

假设我有一个log.js console.log('hi'),而另一个文件我有这个:

require('./example.js')
require('./example.js')
require('./example.js')

我只获得一个console.log hi

我需要做什么才能将hi记录3次?

1 个答案:

答案 0 :(得分:1)

require('./example.js')
delete require.cache[require.resolve('./example.js')]
require('./example.js')
delete require.cache[require.resolve('./example.js')]
require('./example.js')