如何从集合中删除节点?
例如,我要从velociraptor
集中删除dinos
。但是,当我运行脚本时,在执行dinos
之后,仍然在dinos.map().val(cb)
后面看到两个节点。
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软件包,该软件包为gun提供了'unset()'方法。
http://npmjs.com/package/gun-unset
关于javascript - 如何从集合中删除 Node ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47080241/