cookieParser中間件用於獲取web浏覽器發送的cookie中的內容.在使用了cookieParser中間件後,
代表客戶端請求的htto.IncomingMessage對象就具有了一個cookies屬性,該屬性之為一個對象的數組,
其中存放了所有web浏覽器發送的cookie,每一個cookie為cookies屬性值數組中的一個對象.
index.html代碼:
代碼如下:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>向服務器上傳文件</title>
<script type="text/javascript">
function submitCookie(){
var xhr=new XMLHttpRequest();
xhr.open("post","index.html",true);
document.cookie="firstName=思思";
document.cookie="userName=博士";
xhr.onload= function (e) {
if(this.status==200)
document.getElementById("res").innerHTML=this.response;
};
xhr.send();
}
</script>
</head>
<body>
<h1>cookieParser中間件的使用</h1>
<input type="button" value="提交cookie" onclick="submitCookie();" />
<div id="res"></div>
</body>
</html>
server.js代碼:
代碼如下:
var express=require("express");
var fs=require("fs");
var app=express();
app.use(express.cookieParser());
app.get("/index.html", function (req,res) {
res.sendfile(__dirname+"/index.html");
});
app.post("/index.html", function (req,res) {
for(var key in req.cookies){
res.write("cookie名:"+key);
res.write(",cookie值:"+req.cookies[key]+"<br />");
}
res.end();
});
app.listen(1337,"127.0.0.1", function () {
console.log("開始監聽1337");
});
測試結果