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
相关用法
- Node.js urlObject.href用法及代码示例
- Node.js urlObject.hostname用法及代码示例
- Node.js urlObject.hash用法及代码示例
- Node.js urlObject.host用法及代码示例
- Node.js urlObject.auth()用法及代码示例
- Node.js urlObject.slashes用法及代码示例
- Node.js urlObject.query用法及代码示例
- Node.js urlObject.pathname用法及代码示例
- Node.js urlObject.port用法及代码示例
- Node.js urlObject.search用法及代码示例
- Node.js urlObject.protocol用法及代码示例
- Node.js urlObject.auth用法及代码示例
- Node.js urlObject.path用法及代码示例
- Node.js url.parse(urlString, parseQueryString, slashesDenoteHost)用法及代码示例
- Node.js urlSearchParams.values()用法及代码示例
- Node.js url.toString()用法及代码示例
- Node.js urlSearchParams.toString()用法及代码示例
- Node.js url.domainToUnicode()用法及代码示例
- Node.js url.domainToASCII(domain)用法及代码示例
- Node.js url.domainToUnicode(domain)用法及代码示例
- Node.js url.fileURLToPath(url)用法及代码示例
- Node.js url.format(URL[, options])用法及代码示例
- Node.js url.pathToFileURL(path)用法及代码示例
- Node.js url.urlToHttpOptions(url)用法及代码示例
- Node.js url.format(urlObject)用法及代码示例
注:本文由纯净天空筛选整理自Abhishek7大神的英文原创作品 Node.js urlObject.href API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。