我使用Sails JS,我尝试使用socket IO librarie。
正如Sails JS文档中所解释的那样:http://sailsjs.org/#!documentation/sockets
我用这段代码创建一个控制器:
index: function(req, res) {
var param = req.param('msg');
console.log("PARAM : ", param); // For display the message in terminal
// Send a JSON response
return res.json({
success: true,
message: param
});
},
在我的模板中(我使用swig JS模板引擎):
对于include socket io library:
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
在JavaScript代码中:
var socket = io.connect('http://localhost:1337');
socket.get('/echo', {
message: 'hi there!'
}, function(response) {
console.log ('response : ', response);
});
我发现了这个错误:undefined不是socket.get上的函数(&#39; / echo&#39; ...
感谢您的帮助!
答案 0 :(得分:1)
我相信您还需要添加<script type="text/javascript" src="/app/sails.io.js"></script>
。由于此文件中定义了Socket.prototype.get
。