国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

詳解Node.Js如何處理post數據

2019-11-20 08:57:09
字體:
來源:轉載
供稿:網友

實現思路

將data和end事件的回調函數直接放在服務器中,在data事件回調中收集所有的POST數據,當接收到所有數據,觸發end事件后,其回調函數調用請求路由,并將數據傳遞給它,然后,請求路由再將該數據傳遞給請求處理程序。

實現步驟

第一步我們設置了接收數據的編碼格式為UTF-8,第二步注冊了“data”事件的監聽器,用于收集每次接收到的新數據塊,并將其賦值給postData 變量,最后第三步我們將請求路由的調用移到end事件處理程序中,以確保它只會當所有數據接收完畢后才觸發,并且只觸發一次。我們同時還把POST數據傳遞給請求路由

示例代碼

index.js

var server = require("./server"); var router=require("./router"); var requestHandlers=require("./requestHandlers");  var handle = {} handle["/"] = requestHandlers.start; handle["/start"] = requestHandlers.start; handle["/upload"] = requestHandlers.upload;  server.start(router.route,handle); 

server.js

var http = require("http"); var url=require("url");  function start(route,handle) {  function onRequest(request, response) {   var postData="";     var pathname=url.parse(request.url).pathname;   console.log("Request for"+pathname+"received.");        request.setEncoding("utf8");        request.addListener("data", function(postDataChunk) {      postData += postDataChunk;      console.log("Received POST data chunk '"+      postDataChunk + "'.");   });    request.addListener("end", function() {    route(handle, pathname, response, postData);   });     //route(handle,pathname,response);      //response.writeHead(200, {"Content-Type": "text/plain"});   //response.write("this is a demo");   //response.end();  }   http.createServer(onRequest).listen(5656,'127.0.0.1');  console.log("Server has started. localhost:5656"); }  exports.start = start;

router.js

function route(handle,pathname,response,postData){   console.log("About to route a request for"+pathname);   if(typeof handle[pathname]=='function'){     handle[pathname](response,postData);   }   else{     console.log("no request handler found for"+pathname);     response.writeHead(404, {"Content-Type": "text/plain"});   response.write("404 Not found");   response.end();   } } exports.route=route; 

requestHandlers.js

//var querystring = require("querystring");  function start(response,postData) {  console.log("Request handler 'start' was called.");   var body = '<html>'+   '<head>'+   '<meta http-equiv="Content-Type" content="text/html; '+   'charset=UTF-8" />'+   '</head>'+   '<body>'+   '<form action="/upload" method="post">'+   '<textarea name="text" rows="20" cols="60"></textarea>'+   '<input type="submit" value="Submit text" />'+   '</form>'+   '</body>'+   '</html>';    response.writeHead(200, {"Content-Type": "text/html"});   response.write(body);   response.end(); }  function upload(response,postData) {  console.log("Request handler 'upload' was called.");  response.writeHead(200, {"Content-Type": "text/plain"});  response.write("You've sent: " + postData);  response.end(); }  exports.start = start; exports.upload = upload; 

運行:node mynode/index

瀏覽器輸入http://localhost:5656/

結果:

在文本框里輸入“I LOVE YOU” 點擊提交

使用querystring模塊只提取文本,修改一下requestHandlers.js使只返回文本

var querystring = require("querystring");  function start(response,postData) {  console.log("Request handler 'start' was called.");   var body = '<html>'+   '<head>'+   '<meta http-equiv="Content-Type" content="text/html; '+   'charset=UTF-8" />'+   '</head>'+   '<body>'+   '<form action="/upload" method="post">'+   '<textarea name="text" rows="20" cols="60"></textarea>'+   '<input type="submit" value="Submit text" />'+   '</form>'+   '</body>'+   '</html>';    response.writeHead(200, {"Content-Type": "text/html"});   response.write(body);   response.end(); }  function upload(response,postData) {  console.log("Request handler 'upload' was called.");  response.writeHead(200, {"Content-Type": "text/plain"});  response.write("You've sent: " + querystring.parse(postData).text);  response.end(); }  exports.start = start; exports.upload = upload; 

重新啟動,依舊輸入I LOVE YOU ,提交

總結

以上就是這篇文章的全部內容了,希望這篇文章的內容對大家的學習或者工作帶來一定的幫助,如果有疑問大家可以留言交流。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 垣曲县| 荔浦县| 镇远县| 淳安县| 伽师县| 将乐县| 高清| 吉安市| 梓潼县| 同心县| 杂多县| 祁连县| 比如县| 上思县| 讷河市| 申扎县| 青田县| 江达县| 芮城县| 兴和县| 彩票| 高安市| 浪卡子县| 栾川县| 喀喇| 陵川县| 芦山县| 吴忠市| 靖西县| 竹山县| 布拖县| 深圳市| 威海市| 古田县| 本溪市| 株洲县| 营山县| 琼海市| 原阳县| 潜山县| 萍乡市|