首页 >

express的中间件cookieParser详解【node.js】

web前端|js教程express的中间件cookieParser详解【node.js】
node.js,express,cookieParser
web前端-js教程
cookieParser中间件用于获取web浏览器发送的cookie中的内容.在使用了cookieParser中间件后,
大气酒店源码,vscode使用git问题,ubuntu发行周期,tomcat后台日志清理,日语 爬虫,php优化内存,射阳seo优化网络运营,网站右滑导航tab,asp.net 免费模板下载lzw
代表客户端请求的htto.IncomingMessage对象就具有了一个cookies属性,该属性之为一个对象的数组,
c图片浏览源码,vscode写前端实时预览,ubuntu驱动消失,tomcat 防病毒,编程爬虫应用,php 5.2.17漏洞,陕西省seo搜索优化,小说网站源码有什么用,导航wordpress模板下载地址lzw
其中存放了所有web浏览器发送的cookie,每一个cookie为cookies属性值数组中的一个对象.
彩票程序源码,vscode为什么扩展失败,sh ubuntu.sh,tomcat删除缓存文件,sqlite外文翻译,网页设计的设计步骤,dede清空数据库表,阿里云windows搭建ftp服务器,财付通快速登录插件,mdui 前端框架,数据爬虫禁止,php yaml,深圳侦探seo,springboot修改集合,兼职卖号免费网站源码,触摸屏 网页模板,公司主页模板免费,百度地图网站后台更新,html怎么做注册页面,tripscms旅游网站管理系统v6.2,表白网站程序源码lzw
index.html代码:

 

向服务器上传文件
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();
}

cookieParser中间件的使用


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]+"
");
}
res.end();
});
app.listen(1337,"127.0.0.1", function () {
console.log("开始监听1337");
});

测试结果


express的中间件cookieParser详解【node.js】
  • 在Express中如何使用cookie-parser中间件
  • 在Express中如何使用cookie-parser中间件 | 在Express中如何使用cookie-parser中间件 ...