当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js urlObject.href用法及代码示例


urlObject.href API 用于返回完整的 URL 字符串以及协议 (HTTP) 和路径名或其他搜索词。

用法:

urlObject.href
For example: 'http://www.geeksforgeeks.com/login/password.html'

Here, Protocol = http
      Path = /login
      Host = 'www'
      File Name = password.html

示例 1:下面的例子说明了使用urlObejct.hrefNode.js 中的方法。

javascript


// Node program to demonstrate the 
// urlObject.href API as Setter
// It will return a URL object
const gfg = new URL('https://www.geeksforgeeks.com/login.html '); 
// Output the fetched url
console.log(gfg.href);

输出:

 https://www.geeksforgeeks.com/login.html

示例 2:在此示例中,我们将看到 urlObject.href 的使用

javascript


// Node program to demonstrate the  
// url.href API as Setter
  
// Importing the module 'url-parse'
// Use command 'npm install url-parse' in command
// prompt to import this module
const parse = require('url-parse'); 
const url = parse('https://www.example.com:777/a/b?c=d&e=f#g ');
console.log(url.href);

输出:

 https://www.example.com:777/a/b?c=d&e=f#g 

注意:上述程序将使用以下命令编译并运行节点app.js命令。

参考: https://nodejs.org/api/url.html#url_urlobject_href


相关用法


注:本文由纯净天空筛选整理自Abhishek7大神的英文原创作品 Node.js urlObject.href API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。