假设我有一个log.js
console.log('hi')
,而另一个文件我有这个:
require('./example.js')
require('./example.js')
require('./example.js')
我只获得一个console.log
hi
。
我需要做什么才能将hi
记录3次?
答案 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')