url.href是URL类的内置应用程序编程接口,其中url模块具有获取和设置序列化URL的函数。获取href属性的值等效于调用url.toString()方法。将此属性的值设置为新值等同于使用新的URL(值)创建一个新的URL对象。每个URL对象的属性都会被修改。
用法:
const url.href
返回值:它获取并设置序列化的URL。
以下示例程序旨在说明url.href方法的用法:
范例1:
// 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);
// assinging 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);
输出:
Before Change https://example.com:80/foo#ram After Change https://example.com/bar
范例2:
// 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://example.org/foo#ram
注意:以上程序将使用Node中的myapp.js命令进行编译和运行。
参考:
https://nodejs.org/api/url.html#url_url_href
相关用法
- Node.js URLSearchParams.set()用法及代码示例
- Node.js URL.protocol用法及代码示例
- Node.js URL.hostname用法及代码示例
- Node.js URL.hash用法及代码示例
- Node.js URL.host用法及代码示例
- Node.js URL.password用法及代码示例
- Node.js URL.resolve(from,to)用法及代码示例
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Node | URL.href API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。