本文共 1069 字,大约阅读时间需要 3 分钟。
Express??????Node.js??????????????????????????Express?????HTTP????????????????URL???????????
Express????????URL????????????????????????????????Express????????
???????
Express??res.send()???HTTP?????????????????????????????????app??????URL????????????????????????????GET/POST???????????????
Express???app.get()?app.post()????????????????????????????????????????/????????????????
???????????????????????????????????????????no router?????POST???Express???????????????????req.body?????????????????Express??????
const http = require('http');const ejs = require('ejs');const app = require('express-route');http.createServer(app).listen(3000);// ????app.get('/', (req, res) => { const msg = '????????'; ejs.renderFile('views/index.ejs', { msg }, (err, data) => { res.send(data); });});// ??????app.get('/login', (req, res) => { ejs.renderFile('views/form.ejs', {}, (err, data) => { res.send(data); });});// ??????app.post('/dologin', (req, res) => { console.log(req.body); res.send("");}); ???????????Express??????????????????????HTTP???
转载地址:http://hgip.baihongyu.com/