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


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

以下示例程序旨在说明Node.js中urlObejct.href方法的使用:


范例1:

// 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:

// 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 
var parse = require('url-parse');  
  
var 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 

注意:上面的程序将使用node app.js命令编译并运行。

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



相关用法


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