這裏是一個職位HTML表單:獲取發佈數據從形式
<html>
<body>
<h1>Home Html Page</h1>
<a href="/Product/Index">Go To Product</a>
<hr/>
<form action="/Home/Index" method="POST" name="form1">
Enter Text:
<input type="text" id="txtInput"/>
<button id="btnPost">Post Data</button>
</form>
</body>
</html>
下面是JavaScript代碼,這應該得到發佈的數據:
function Server(req, resp) {
if (req.method == 'POST') {
var chunk = '';
req.on('data', function (data) {
chunk += data;
});
req.on('end', function() {
console.log(chunk + "<-Posted Data Test");
});
}'
...
resp.write(...);
resp.end();
}
你能幫助我嗎?我是nodejs中的新手,那麼你能告訴我一個例子嗎?
那是相當多的代碼,我有(其中我沒有用,所以我不能評論它的價值)你看到了什麼問題? – ControlAltDel 2012-04-11 19:40:44