这是 html 中的表单示例:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>CSS3 Contact Form</title>
</head>
<body>
<div id="contact">
<h1>Send an email</h1>
<form action="/myaction" method="post">
<fieldset>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Enter your full name" />
<label for="email">Email:</label>
<input type="email" id="email" placeholder="Enter your email address" />
<label for="message">Message:</label>
<textarea id="message" placeholder="What's on your mind?"></textarea>
<input type="submit" value="Send message" />
</fieldset>
</form>
</div>
</body>
</html>
这是在服务器上运行的 node.js 函数:
var sys = require('sys'),
http = require('http');
http.createServer(function (req, res) {
switch (req.url)
case '/myaction':
res.end(?????);
break;
}
}).listen(8080);
sys.puts('Server running at http://127.0.0.1:8080/');
我有两个问题:
- 如何
myaction
从 html 页面调用 node.js 中的函数?因为 html 文件在端口 80 上运行,node.js 在 8080 上运行(当我尝试将 node.js 移动到端口 80 时,它会写入“// Unhandled 'error' event”) - 在我放置“???????”的node.js函数中 如何从 html 表单中获取数据。当我输入 req.html.body.name 时,我没有得到数据......