借助urlObject.protocol()
方法,我們可以找到給定主機名使用的協議名稱。
用法:urlObject.protocol()
返回: 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);
輸出:
http:
範例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);
輸出:
https:
相關用法
- Node.js URL.pathToFileURL用法及代碼示例
- Node.js URL.fileURLToPath用法及代碼示例
- Node.js URLSearchParams.has()用法及代碼示例
- Node.js URL.href用法及代碼示例
- Node.js URL.password用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Node | urlObject.protocol API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。