Как удалить узел из множества?
Как я могу удалить узел из набора?
Например, я хочу удалить 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);
});
1 ответ
Решение
Можете попробовать этот пакет npm, который предоставляет метод unset() для gun.
http://npmjs.com/package/gun-unset