📅  最后修改于: 2023-12-03 14:44:39.415000             🧑  作者: Mango
Node.js Http2ServerRequest.url 方法是一个用于获取 HTTP/2 服务器端请求的 URL。这个方法可以帮助开发者在服务器端轻松地获取客户端请求的 URL,并对请求进行进一步处理。
const url = http2ServerRequest.url
返回值是一个字符串,表示 HTTP/2 请求的完整 URL(包括主机名、路径和查询字符串参数)。
const http2 = require('http2');
const server = http2.createSecureServer();
server.on('request', (req, res) => {
console.log(req.url); // 打印客户端请求的URL
res.end('Hello world!');
});
server.listen(8443);
运行上面的代码,当客户端发送请求时,控制台会输出相应的 URL ,例如:
https://localhost:8443/page1?hello=world
以上就是 Node.js Http2ServerRequest.url 方法的介绍,希望对开发者有所帮助。