url.origin是一个内置的应用程序编程接口(API)网址类别内网址模块。
url.originAPI 用于获取 URL 来源的只读序列化。
Syntax: url.origin url : It is an object created by URL constructor.
示例 1:
javascript
//Importing the url module
const url = require('url');
//Creating an URL_1 object with URL constructor.
const URL_1 = new URL("https://www.geeksforgeeks.org/geeks");
//Getting origin of above created URL_1 object
console.log(URL_1.origin);
输出:
注意:我们无法使用url.origin API 设置 URL 的来源。如果我们尝试这样做,那么它将被忽略并且原点将不会受到影响。
示例 2:
javascript
//Importing the url module
const url = require('url');
//Creating an URL_1 object with URL constructor.
const URL_1 = new URL("https://www.geeksforgeeks.org/geeks");
//Getting origin of above created URL_1 object
console.log(URL_1.origin);
//Setting URL_1 origin to https://www.geeks.com
URL_1.origin = "https://www.geeks.com";
//Getting origin after setting URL_1 origin
console.log(URL_1.origin);
输出:
相关用法
- Node.js URL.origin用法及代码示例
- 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.hash用法及代码示例
- Node.js URL.host用法及代码示例
- Node.js URL.hostname用法及代码示例
- Node.js URL.href用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自AshishkrGoyal大神的英文原创作品 Node.js URL.origin API。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。