我想在我的基于sailljs 的项目中创建一个聊天应用程序,我如何以及在哪里可以配置服务器中的套接字和相关设置?我从这个存储库获得了一个示例项目,但它使用的是sails v0.10,我需要使用sails v0.11.3,但是v0.11.3在Nodejs脚本中使用socket时有很多变化,例如,我们不能使用onConnect,因为它已被弃用。
我已经尝试过这个例子,但没有使用sail v0.11.3 https://github.com/sgress454/sailsChat
这是我已经完成的代码,但我不知道我应该把它放在哪里,当我把它放在 config 目录中的 sockets.js 文件中时它不起作用
// Set some options:
// (you have to specify the host and port of the Sails backend when using this library from Node.js)
io.sails.url = 'http://localhost:9002';
// ...
io.socket.on('connect', function socketConnected() {
console.log('connect..');
});
// Send a GET request to `http://localhost:1337/hello`:
io.socket.get('/hello', function serverResponded (body, JWR) {
// body === JWR.body
console.log('Sails responded with: ', body);
console.log('with headers: ', JWR.headers);
console.log('and with status code: ', JWR.statusCode);
// When you are finished with `io.socket`, or any other sockets you connect manually,
// you should make sure and disconnect them, e.g.:
io.socket.disconnect();
// (note that there is no callback argument to the `.disconnect` method)
});
请指导我。