当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js URL.origin用法及代码示例


url.origin

历史
版本变化
v15.0.0

方案"gopher" 不再特殊,url.origin 现在为它返回'null'

获取 URL 源的只读序列化。

const myURL = new URL('https://example.org/foo/bar?baz');
console.log(myURL.origin);
// Prints https://example.org
const idnURL = new URL('https://測試');
console.log(idnURL.origin);
// Prints https://xn--g6w251d

console.log(idnURL.hostname);
// Prints xn--g6w251d

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 URL.origin。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。