听起来可能很奇怪,但我正在尝试进行非常简单的网络聊天,我需要帮助..
我用节点做到了这一点 -
var http = require('http');
var fs = require('fs');
var path = require('path');
var messages = [];
// Simple Function to load HTML/JavaScript/CSS Files
function LoadHTML(html, requrl, res) {
var filePath = '.' + requrl;
if (filePath == './') {
filePath = './' + html;
}
var extname = path.extname(filePath);
var contentType = 'text/html';
switch (extname) {
case '.js':
contentType = 'text/javascript';
break;
case '.css':
contentType = 'text/css';
break;
}
fs.exists(filePath, function(exists) {
if (exists) {
fs.readFile(filePath, function(error, content) {
if (error) {
res.writeHead(500);
res.end();
}
else {
res.writeHead(200, { 'Content-Type': contentType });
res.end(content, 'utf-8');
}
});
}
else {
res.writeHead(404);
res.end();
}
});
}
http.createServer(function (req, res) {
LoadHTML('index.html', req.url, res);
}).listen(8125);
我正在使用的 HTML/CSS - http://jsfiddle.net/yZ5at/
从这里我被卡住了.. 我希望当用户在文本区域中输入内容并按回车时,他的文本将显示在聊天 div 中。
但我该怎么做呢?请问有什么帮助吗?