gpt4 book ai didi

node.js - nodejs 中的 jquery-url

转载 作者:搜寻专家 更新时间:2023-10-31 23:43:35 24 4
gpt4 key购买 nike

我正在尝试将一些使用 jquery-url 的 js 代码移植到 nodejs 中。

jquery-url 用于以这种方式获取给定 URL 的主机名:

var host = $.url(url).attr('host');

我的问题是,有没有jquery-url的npm包?如果没有,现有的哪些软件包具有此功能?

提前致谢!

最佳答案

Node.js 已经内置了这个。参见 node Documentation .

例如:

var url = require("url");
var host = url.parse('http://user:pass@host.com:8080/p/a/t/h?query=string#hash').host;
console.log(host);

关于node.js - nodejs 中的 jquery-url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14710387/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com