我不确定我是否了解如何在构造函数中配置 gunDB 服务器。这就是我想要做的事情:
var gunOptions = {
file: 'data.json',
peers: ['host1.com','host2.com']
}
bucket = new gun(gunOptions);
当我这样做时,我会收到很多看起来像这样的错误:
错误:发送后无法设置标头。 在ServerResponse.OutgoingMessage.setHeader(_http_outgoing.js:346:11) 在ServerResponse.writeHead(_http_server.js:180:21) 成功时(/home/ubuntu/lib/ls/start.ls:88:7) 在枪。 (/home/ubuntu/lib/ls/start.ls:204:7) 在wcb(/home/ubuntu/node_modules/gun/gun.js:640:18) 在/home/ubuntu/node_modules/gun/lib/wsp.js:247:7 在r.ws.cbs。(匿名函数)(/home/ubuntu/node_modules/gun/gun.js:1387:6) 在WebSocket.ws.onmessage(/home/ubuntu/node_modules/gun/gun.js:1417:86) 在WebSocket.onMessage上(/home/ubuntu/node_modules/ws/lib/WebSocket.js:418:14) 在emitTwo(events.js:106:13)
然而......当我像这样初始化枪时,效果很好:
bucket = new gun(['host1.com','host2.com']);
任何人都可以看到我做错了吗?
提前致谢。 ☺