在 URLSearchParams 接口中,get() 方法返回輸入搜索參數的第一個值。
用法:
URLSearchParams.get(name)
返回:如果找到 name-value 對,則返回字符串,否則返回 null。
參數:
name- 輸入參數的名稱。
Example1:當輸入參數存在時
var URL = require('url').URL;
let url = new URL('https://example.com/?name=Deepak&age=20');
let params = new URLSearchParams(url.search.substring(1));
let name = params.get("name"); // is the string "Deepak"
let age = parseInt(params.get("age"), 10); // is the number 20
console.log(name)
console.log(age)
輸出:
Deepak 20
示例2:當輸入參數不存在時
var URL = require('url').URL;
let url = new URL('https://example.com/?name=Deepak&age=20');
let params = new URLSearchParams(url.search.substring(1));
let address = params.get("address");
console.log(address)
輸出:
null
支持的瀏覽器:
- 穀歌瀏覽器
- IE
- Edge
- Opera
- 蘋果瀏覽器
相關用法
- Node.js URLSearchParams.get()用法及代碼示例
- Node.js URLSearchParams.getAll()用法及代碼示例
- Node.js URLSearchParams.sort()用法及代碼示例
- Node.js URLSearchParams.set()用法及代碼示例
- Node.js URLSearchParams.toString()用法及代碼示例
- Node.js URLSearchParams.keys()用法及代碼示例
- Node.js URLSearchParams.forEach()用法及代碼示例
- Node.js URLSearchParams.delete()用法及代碼示例
- Node.js URLSearchParams.has()用法及代碼示例
- Node.js URLSearchParams.append()用法及代碼示例
- Node.js URLSearchParams.entries()用法及代碼示例
- Node.js URLSearchParams.forEach(fn[, thisArg])用法及代碼示例
- Node.js URLSearchParams.set(name, value)用法及代碼示例
- Node.js URLSearchParams用法及代碼示例
- Node.js URLSearchParams urlSearchParams[Symbol.iterator]()用法及代碼示例
- 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用法及代碼示例
注:本文由純淨天空篩選整理自DeepakDev大神的英文原創作品 Node.js URLSearchParams.get()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。