nodejs语法如何获取并解析请求地址,下面web建站小编给大家简单介绍一下如何利用req.url
来获取请求地址!
具体代码如下:
const http = require('http'); const url = require('url'); const server = http.createServer((req, res) => { const requestUrl = req.url; // 获取请求地址 const parsedUrl = url.parse(requestUrl, true); // 解析请求地址 const path = parsedUrl.pathname; // 获取路径 const query = parsedUrl.query; // 获取查询参数 console.log('path:', path); console.log('query:', query); res.end('Hello World'); }); server.listen(3000, () => { console.log('Server is running at http://localhost:3000'); });
nodejs如何利用Long-Polling实现实时发送数据
nodejs如何利用Server-Sent Events实现实时发送数据
标签: nodejs获取请求地址, nodejs解析请求地址, nodejs语法
上面是“nodejs语法如何获取并解析请求地址”的全面内容,想了解更多关于 nodejs 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_4690.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!