gpt4 book ai didi

javascript - 如何从集合中删除 Node ?

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

如何从集合中删除 Node ?

例如,我想从 dinos 集合中删除 velociraptor。但是当我运行脚本时,在 dinos.map().val(cb) 执行后,我仍然看到 dinos 后面有两个 Node 。

const Gun = require('gun');    
const gun = new Gun({ peers: [ 'https://localhost:8888/gun' ] });

const app = gun.get('park');
const dinos = app.get('dinos');

const velociraptor = app.get('velociraptor').put({
statistics: {
force: 9,
speed: 15
}
});

const trex = app.get('trex').put({
statistics: {
force: 25,
speed: 5
}
});

dinos.set(velociraptor);
dinos.set(trex);

//velociraptor.put(null);
app.get('velociraptor').put(null);

dinos.map().val((v, k) => {
console.log(k);
console.log(v);
});

最佳答案

可以尝试这个 npm 包,它为枪提供了“unset()”方法。

http://npmjs.com/package/gun-unset

关于javascript - 如何从集合中删除 Node ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47080241/

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