如何在节点服务器中使用sails.io.js版本0.11.3

时间:2016-05-10 05:13:37

标签: node.js sockets sails.js sails.io.js

我想在基于sailjs的项目中创建一个聊天应用程序,如何以及在哪里可以配置服务器中的套接字和相关设置?我从这个存储库获得了一个示例项目,但它使用的是sails v0.10,我需要使用sails v0.11.3,但是在Nodejs脚本中使用socket时v0.11.3有很多变化,例如,我们无法使用 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)
});

请指导我。

1 个答案:

答案 0 :(得分:0)

在此链接中使用主存储库后问题已解决

https://github.com/balderdashy/sailsChat