与两个用户IP通信

时间:2012-05-17 12:19:03

标签: php javascript jquery ajax node.js

在网站上传达两个用户的任何方式? 像user1点击名称user2(whith Ip)并发送消息。我知道数据库和ajax可以保存消息并发送到user2但它的速度慢,不适合。 我想模拟私人聊天室并保存消息历史记录只要打开jquery对话框。 我发现this,但我不知道是否合适。 任何人都有任何想法?

var http = require('http');
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
}).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');

site

中的热门代码

2 个答案:

答案 0 :(得分:1)

使用WebSockets可能是一个解决方案吗? http://www.websocket.org/

这使自己适应聊天系统,所以你可以使用Push而不是Pull来检查消息吗?

答案 1 :(得分:0)

使用socket.io - 它提供了WebSockets和几个蹩脚IE的后备