Node.js urlObject.protocol API
借助urlObject.protocol()
方法,我们可以找到给定主机名使用的协议名称。
Syntax : 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);
输出 :