当前位置:Gxlcms > PHP教程 > 在node中引用了connect之后,用它自带的中间件总是会报错

在node中引用了connect之后,用它自带的中间件总是会报错

时间:2021-07-01 10:21:17 帮助过:20人阅读

    var connect = require('connect');
    var app = connect()
        .use(connect.cookieParser())
        .use(function(req,res){
        console.log(req.cookie);
        console.log(req.signedCookies);
    }).listen(3000);

提示:connect.cookieParser is not a function;
在用 bodyParser的时候也会提示,
网上说是从connect中脱离出来了,要重新 npm install cookieParser ,
那bodyParser 也需要吗,所有的 自带中间件都需要?

人气教程排行