天天看點

#express#使用body-parser解析POST請求體

//導入body-parser子產品
const bodyParser = require("body-parser");

//将子產品注冊上app執行個體上
app.use(bodyParser.urlencoded({ extended: false }));
app.use(bodyParser.json());
           

繼續閱讀