1

我是sailsjs的新手,在尝试实现这个例子时卡住了:

http://sailsjs.org/documentation/concepts/realtime

api/控制器/SayController.js

module.exports = {
  hello: function(req, res) {
    // Make sure this is a socket request (not traditional HTTP)
    if (!req.isSocket) {return res.badRequest();}
    // Have the socket which made the request join the "funSockets" room
    sails.sockets.join(req, 'funSockets');
    // Broadcast a "hello" message to all the fun sockets.
    // This message will be sent to all sockets in the "funSockets" room,
    // but will be ignored by any client sockets that are not listening-- i.e. that didn't call `io.socket.on('hello', ...)`
    sails.sockets.broadcast('funSockets', 'hello', req);
    // Respond to the request with an a-ok message
    return res.ok();
  }
}

资产/js/myapp.js

io.socket.on('hello', function gotHelloMessage (data) {
  console.log('Socket `' + data.id + '` joined the party!');
});
io.socket.get('/say/hello', function gotResponse(body, response) {
  console.log('Server responded with status code ' + response.statusCode + ' and data: ', body);
})

现在当我运行应用程序时出现错误

ending 500 ("Server Error") response: 
 RangeError: Maximum call stack size exceeded
    at Server.hasOwnProperty (native)
    at _hasBinary (/home/ubuntu/.nvm/versions/node/v4.4.5/lib/node_modules/sails/node_modules/sails-hook-sockets/node_modules/socket.io/node_modules/has-binary/index.js:49:45)
    at _hasBinary (/home/ubuntu/.nvm/versions/node/v4.4.5/lib/node_modules/sails/node_modules/sails-hook-sockets/node_modules/socket.io/node_modules/has-binary/index.js:49:63)

请帮忙...

4

1 回答 1

3

我认为sails.sockets.broadcast()必须对参数进行一些调整。也许文档示例已过时或不完整。尝试这个:

SayController.js:

module.exports = {
  hello: function(req, res) {
    // Make sure this is a socket request (not traditional HTTP)
    if (!req.isSocket) {return res.badRequest();}

    // Have the socket which made the request join the "funSockets" room
    sails.sockets.join(req, 'funSockets');

    // Broadcast a "hello" message to all the fun sockets.
    // This message will be sent to all sockets in the "funSockets" room,
    // but will be ignored by any client sockets that are not listening-- i.e. that didn't call `io.socket.on('hello', ...)`
    //                                             ▼ this is "data" in io.socket.on('hello', function gotHelloMessage (data)
    sails.sockets.broadcast('funSockets', 'hello', {id: 'my id'}, req);

    // Respond to the request with an a-ok message
    // ▼ The object returned here is "body" in io.socket.get('/say/hello', function gotResponse(body, response)
    return res.ok({
        message: "OK"
    });
  }
}
于 2016-08-04T19:22:18.097 回答