url.hostname 是 url 模块中类 URL 的内置应用程序编程接口,用于获取和设置 URL 的主机名部分。 url.hostname 不包含端口号。
用法:
url.hostname
它通过单值 url 关联,该 url 是由 URL 构造函数创建的对象。
例子:
// Node program to demonstrate the
// url.hostname API as both Getter and Setter
// Imports only single export 'URl'
// from url module using ES6 syntax
const { URL } = require('url');
// Creating and initializing myURL
// object using URL constructor
const myURL = new URL('https://gfg.org:80/foo#ram');
// Display hostname value of myURL before change
console.log("Before Change");
console.log(myURL.hostname);
console.log('');
// Updating hostname portion
// using hostname method
myURL.hostname = 'example2.com';
// Display hostname value of myURL after updating
console.log("After Change");
console.log(myURL.hostname);
输出:
Before Change gfg.org After Change geeksforgeeks.org
参考: https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hostname
相关用法
- Node.js urlObject.hostname用法及代码示例
- Node.js urlObject.host用法及代码示例
- Node.js urlObject.href用法及代码示例
- Node.js urlObject.hash用法及代码示例
- Node.js urlObject.auth()用法及代码示例
- Node.js urlObject.slashes用法及代码示例
- Node.js urlObject.query用法及代码示例
- Node.js urlObject.pathname用法及代码示例
- Node.js urlObject.port用法及代码示例
- Node.js urlObject.search用法及代码示例
- Node.js urlObject.protocol用法及代码示例
- Node.js urlObject.auth用法及代码示例
- Node.js urlObject.path用法及代码示例
- Node.js url.parse(urlString, parseQueryString, slashesDenoteHost)用法及代码示例
- Node.js urlSearchParams.values()用法及代码示例
- Node.js url.toString()用法及代码示例
- Node.js urlSearchParams.toString()用法及代码示例
- Node.js url.domainToUnicode()用法及代码示例
- Node.js url.domainToASCII(domain)用法及代码示例
- Node.js url.domainToUnicode(domain)用法及代码示例
- Node.js url.fileURLToPath(url)用法及代码示例
- Node.js url.format(URL[, options])用法及代码示例
- Node.js url.pathToFileURL(path)用法及代码示例
- Node.js url.urlToHttpOptions(url)用法及代码示例
- Node.js url.format(urlObject)用法及代码示例
注:本文由纯净天空筛选整理自ManojVarmaPenmatsa大神的英文原创作品 Node.js urlObject.hostname API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。