在裏麵URL搜索參數接口,將sort()方法有助於對所有鍵/對進行排序。排序標準是鍵的 unicode 點。該方法使用穩定的排序算法。
用法:
searchParams.sort();
返回:現有name-value對按名稱排序。
示例 1:在此示例中,我們將看到 URLSeacrchParams() 的使用。
javascript
// Create a test URLSearchParams object
const searchPars = new URLSearchParams("d=4 & c=2 & b=3 & a=1");
// Sort the key/value pairs
searchPars.sort();
// Display the sorted query string
console.log(searchPars.toString());
輸出:
a=1&b=3&c=2&d=4
示例 2:在此示例中,我們將看到 URLSearchParams() 的使用。
javascript
// Create a test URLSearchParams object
const searchPars = new URLSearchParams(z=4 & a=2 & t=3 & a=1");
// Sort the key/value pairs
searchPars.sort();
// Display the sorted query string
console.log(searchPars.toString());
輸出:
a=2&a=1&t=3&z=4
支持的瀏覽器:
- 穀歌瀏覽器
- IE
- Edge
- Opera
- 蘋果瀏覽器
相關用法
- Node.js URLSearchParams.sort()用法及代碼示例
- Node.js URLSearchParams.set()用法及代碼示例
- Node.js URLSearchParams.set(name, value)用法及代碼示例
- Node.js URLSearchParams.toString()用法及代碼示例
- Node.js URLSearchParams.keys()用法及代碼示例
- Node.js URLSearchParams.getAll()用法及代碼示例
- Node.js URLSearchParams.forEach()用法及代碼示例
- Node.js URLSearchParams.delete()用法及代碼示例
- Node.js URLSearchParams.get()用法及代碼示例
- Node.js URLSearchParams.has()用法及代碼示例
- Node.js URLSearchParams.append()用法及代碼示例
- Node.js URLSearchParams.entries()用法及代碼示例
- Node.js URLSearchParams.forEach(fn[, thisArg])用法及代碼示例
- 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.sort()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。