有什么方法可以在网站上交流两个用户?像 user1 点击名称 user2(whith Ip) 并发送消息。我知道使用数据库和 ajax 可以保存消息并发送给 user2,但它速度慢且不适合。我想要模拟私人聊天室并保存消息历史记录只要打开 jquery 对话框。我找到了这个,但我不知道是否合适。有人知道吗?
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/');
网站顶部代码