express
npm install express --save npm install body-parser post请求包 // 引入body-parser模块,用来处理post请求参数 const bodyParser = require(‘body-parser’); // 处理post请求参数 app.use(bodyParser .urlencoded({extended: false})) app.use(bodyParser .json()) npm install art-template express-art-template
本文来自博客园,作者:zjxgdq,转载请注明原文链接:https://www.cnblogs.com/zjxzhj/p/14882697.html