ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、视频、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
url模块解析url 解析req.url ~~~ const urlLib = require("url"); var obj = urlLib.parse("http://www.baidu.com?user=cheng&pwd=123456",true); console.log(obj); ~~~ ~~~ //输出 Url { protocol: 'http:', slashes: true, auth: null, host: 'www.baidu.com', port: null, hostname: 'www.baidu.com', hash: null, search: '?user=cheng&pwd=123456', query: [Object: null prototype] { user: 'cheng', pwd: '123456' }, pathname: '/', path: '/?user=cheng&pwd=123456', href: 'http://www.baidu.com/?user=cheng&pwd=123456' } ~~~