POST方法提交表單數(shù)據(jù)向服務(wù)器提交數(shù)據(jù)需要使用POST方法,GET方法的請求信息都在查詢字符串中,沒有請求體,而POST方法的傳輸?shù)臄?shù)據(jù)都在請求體中,故提交表單數(shù)據(jù)時(shí)需要使用POST方法。
req是請求信息,req.url表示請求的地址,當(dāng)服務(wù)器運(yùn)行之后,req請求的網(wǎng)址為127.0.0.1:3000,此時(shí)req.url為‘/',則返回的是一串表單數(shù)據(jù),在表單數(shù)據(jù)中設(shè)置了method是post,action是‘/url',表面提交數(shù)據(jù)的方式是POST,將數(shù)據(jù)提交的地址為127.0.0.1:3000/url,而提交之后要獲取新的頁面即127.0.0.1:3000/url,此時(shí)req.url為‘/url',故顯示的另一個(gè)頁面。
<script>
//提交表單數(shù)據(jù)
var http=require('http');
var querystring=require('querystring');
var server=http.createServer(function (req,res) {
//req.url不同則返回的頁面不同
if('/'==req.url){
res.writeHead(200,{'Content-Type':'text/html'});
res.write([
'<form method="post" action="/url">',
'<h1>My Form</h1>',
'<fieldset>',
'<label>Personal Information</label>',
'<p>What is your name?</p>',
'<input type="text" name="name">',
'<button>submit</button>',
'</form>'
].join(''));
res.end();
}else if('/url'==req.url&&req.method=='POST'){
var reqBody='';
req.on('data',function (data) {
reqBody += data;
});
req.on('end',function () {//用于數(shù)據(jù)接收完成后再獲取
res.writeHead(200,{'Content-Type':'text/html'});
res.write('you have sent a '+req.method+' request\n');
res.write('<p>Content-Type:'+req.headers['content-type']+'</p>'
+'<p>Data:your name is '+querystring.parse(reqBody).name+'</p>');
res.end();
})
}else{
res.writeHead(404);
res.write('Not Found');
res.end();
}
}).listen(3000,function () {
console.log('server is listening 3000');
});
</script/>
提交之后,需要獲取請求信息的請求體,因?yàn)镻OST方法中信息都在請求體中,用req綁定data事件獲取數(shù)據(jù),這里需要注意的是必須得在數(shù)據(jù)接收完成后再對數(shù)據(jù)進(jìn)行操作,即必須綁定end事件監(jiān)聽請求信息是否傳輸完成。
querystring是查詢字符串模塊,用于對查詢字符串的解析,parse方法將查詢字符串解析成一個(gè)對象。
運(yùn)行結(jié)果:提交數(shù)據(jù)后:
文章題目:Nodejs之http的表單提交
轉(zhuǎn)載來于:http://www.rwnh.cn/news20/169270.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供Google、靜態(tài)網(wǎng)站、微信公眾號、域名注冊、網(wǎng)站排名、小程序開發(fā)
廣告
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源:
創(chuàng)新互聯(lián)