写在前面
感觉这篇文章有点水…我也不想的,只是快开学,还没有开学待在家里总有做不完的事情,忙里忙活的没有学习太多,只能把自己的库存发出来。
在学校就比较自由了,学到自己想吐都没问题。
下次不水了=_= ,得再接再厉呀
Node.js 路由
1、含义解释
路由是指客户端请求地址与服务器程序代码的映射关系。
eg:http://localhost:3000/index 服务器响应端口号为3000的index页面内容
简单来说,就是请求什么响应什么
2、代码展示
1.代码
const http = require('http');
const url = require('url');
const app = http.createServer();
app.on('request', (req, res) => {
const method = req.method.toLowerCase();
const pathname = url.parse(req.url).pathname;
res.writeHead(200, {
'content-type': 'text/html;charset=utf8'
})
if (method == 'get') {
if (pathname == '/' || pathname == '/index') {
res.end('welcome to index');
} else if (pathname == '/list') {
res.end('welcome to list');
} else {
res.end('sorry!')
}
} else if (method == 'post') {
}
})
app.listen(3000);
console.log('服务器启动成功!');
2.操作
写在最后
我们的征途是星辰大海
|