url.href是類的內置應用程序編程接口URL與在網址獲取和設置序列化 URL 的模塊。獲取 href 屬性的值相當於調用網址.toString()方法。將此屬性的值設置為新值相當於使用 new URL(value) 創建新的 URL 對象。 URL 對象的每個屬性都將被修改。
用法:
const url.href
返回值:它獲取並設置序列化的 URL。
以下示例程序旨在說明使用url.href方法:
示例1:
javascript
// node program to demonstrate the
// url.href API as Setter
//importing the module 'url'
const http = require('url');
// creating and initializing myURL
const myURL = new URL('https://example.com:80/foo#ram');
// Display href value of myURL before change
console.log("Before Change");
console.log(myURL.href);
// assigning serialized URL
// using href
console.log();
myURL.href = 'https://example.com/bar';
// Display href value of myURL after change
console.log("After Change");
console.log(myURL.href);
輸出:
示例 2:
javascript
// node program to demonstrate the
// url.href API as Getter
//importing the module 'url'
const http = require('url');
// creating and initializing myURL
const myURL = new URL('https://example.org/foo#ram');
// getting the serialized URL
// using href
const href = myURL.href;
// Display hostname value
console.log(href);
輸出:
參考:
https://nodejs.org/api/url.html#url_url_href
相關用法
- Node.js URL.href用法及代碼示例
- Node.js URL.hash用法及代碼示例
- Node.js URL.host用法及代碼示例
- Node.js URL.hostname用法及代碼示例
- Node.js URL.toJSON()用法及代碼示例
- Node.js URL.pathToFileURL用法及代碼示例
- Node.js URL.fileURLToPath用法及代碼示例
- Node.js URL.protocol用法及代碼示例
- Node.js URL.resolve(from,to)用法及代碼示例
- Node.js URL.format(urlObject)用法及代碼示例
- Node.js URL.format用法及代碼示例
- Node.js URL.origin用法及代碼示例
- Node.js URL.password用法及代碼示例
- Node.js URL.pathname用法及代碼示例
- Node.js URL.port用法及代碼示例
- Node.js URL.search用法及代碼示例
- Node.js URL.username用法及代碼示例
- Node.js URL.searchParams用法及代碼示例
- Node.js URL.createObjectURL(blob)用法及代碼示例
- Node.js URLSearchParams.sort()用法及代碼示例
- Node.js URLSearchParams.set()用法及代碼示例
- Node.js URLSearchParams.toString()用法及代碼示例
- Node.js URLSearchParams.keys()用法及代碼示例
- Node.js URLSearchParams.getAll()用法及代碼示例
- Node.js URLSearchParams.forEach()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Node.js URL.href API。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。