有没有办法在 Javascript 中创建任何其他弱引用的 WeakMap 来存储键值对,其中 key 是 String/Number ,value 是 Object。
引用必须像这样工作:
const wMap = new WeakRefMap();
const referencer = {child: new WeakRefMap()}
wMap.set('child', temp.child);
wMap.has('child'); // true
delete referencer.child
wMap.has('child'); //false
我创建了一种树结构,用于跟踪当前范围内仍在使用的引用。
我会进行大量合并,并且递归地清理深度嵌套的结构对于这个用例来说可能非常低效。
可以使用 WeakRef 和 FinalizationRegistry 来解决。
这是一个用 TypeScript 编写的示例:
class InvertedWeakMap<K extends string | symbol, V extends object> {
_map = new Map<K, WeakRef<V>>()
_registry: FinalizationRegistry<K>
constructor() {
this._registry = new FinalizationRegistry<K>((key) => {
this._map.delete(key)
})
}
set(key: K, value: V) {
this._map.set(key, new WeakRef(value))
this._registry.register(value, key)
}
get(key: K): V | undefined {
const ref = this._map.get(key)
if (ref) {
return ref.deref()
}
}
has(key: K): boolean {
return this._map.has(key) && this.get(key) !== undefined
}
}
async function main() {
const map = new InvertedWeakMap()
let data = { hello: "world!" } as any
map.set("string!", data)
console.log('---before---')
console.log(map.get("string!"))
console.log(map.has("string!"))
data = null
await new Promise((resolve) => setTimeout(resolve, 0))
global.gc() // call gc manually
console.log('---after---')
console.log(map.get("string!"))
console.log(map.has("string!"))
}
main()
必须在node.js环境中使用--expose-gc选项运行。
您无法捕获删除操作。您可以做的是将数据封装在另一个对象中,例如
function referenceTo(value){
this.value=value;
}
所以如果删除了这个引用,就无法再访问它了
var somedata=new referenceTo(5)
var anotherref=somedata;
//do whatever
delete somedata.value;
//cannot be accessed anymore
anotherref.value;//undefined