我是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)
请帮忙...