借助urlObject.protocol()
方法,我们可以找到给定主机名使用的协议名称。
用法:urlObject.protocol()
Return : Returns the protocol used (i.e. - http, https, ftp, etc.)
示例#1:在这个例子中,借助urlObject.protocol()
方法我们能够从主机名中提取所使用的协议。
// Importing the module 'url'
const url = require('url');
var adr =
'http://localhost:8080/default.htm?year=2019&month=may';
// Parse the address:
var q = url.parse(adr, true);
/* The parse method returns an object containing
URL properties */
console.log(q.protocol);
输出:
示例#2:
// Importing the module 'url'
const url = require('url');
var adr =
'https://localhost:8080/default.htm?year=2k19&month=geekofthemonth';
// Parse the address:
var q = url.parse(adr, true);
/* The parse method returns an object containing
URL properties */
console.log(q.protocol);
输出:
相关用法
- Node.js urlObject.protocol用法及代码示例
- Node.js urlObject.pathname用法及代码示例
- Node.js urlObject.port用法及代码示例
- Node.js urlObject.path用法及代码示例
- Node.js urlObject.auth()用法及代码示例
- Node.js urlObject.slashes用法及代码示例
- Node.js urlObject.href用法及代码示例
- Node.js urlObject.query用法及代码示例
- Node.js urlObject.hostname用法及代码示例
- Node.js urlObject.hash用法及代码示例
- Node.js urlObject.host用法及代码示例
- Node.js urlObject.search用法及代码示例
- Node.js urlObject.auth用法及代码示例
- 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)用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Node.js urlObject.protocol API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。