最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - URLSearchParams.set() without URIEncoding - Stack Overflow

programmeradmin0浏览0评论

URLSearchParams.set(key, value) URIEncodes the values its given, producing ugly non-specified urls.

The following test is based off this list of url friendly characters

const url = new URL("");
const test = "abc123+-_$#%?@,"
url.searchParams.set("foo", test);

console.log(`What foo should be: ${test}`);
console.log(`What foo is: ${url.search}`)

URLSearchParams.set(key, value) URIEncodes the values its given, producing ugly non-specified urls.

The following test is based off this list of url friendly characters

const url = new URL("http://www.example./path");
const test = "abc123+-_$#%?@,"
url.searchParams.set("foo", test);

console.log(`What foo should be: ${test}`);
console.log(`What foo is: ${url.search}`)

Is there a way to use URLSearchParams from URL.searchParams to update a search param to the value given and not an encoding of it?

Share Improve this question asked Mar 2, 2022 at 0:36 Seph ReedSeph Reed 11.1k14 gold badges83 silver badges153 bronze badges 5
  • 1 Why would you want to do that? If test was something like bar&baz=bla doing it the way you want would create both a bar and a baz param. Also note that # has to be converted no matter what, or it will be considered as the URL's hash, and if you need to decode this character, the others would also need to be encoded or you won't be able to tell apart the original sequence %23 from the original # that got encoded to %23. – Kaiido Commented Mar 2, 2022 at 3:06
  • 1 The reason a UX developer would want to have readable URLs is so users can read them. And while you are correct that the & symbol should be avoided, # ? and = can be used without issue. Give it a try! – Seph Reed Commented Mar 2, 2022 at 22:26
  • And why a UX developper would use an URLSearchParam to display something to their users? If you want to show them the content of the POST params show just that, the URL is for the server to read. And # is the one that's not ok, look at your answer's result. – Kaiido Commented Mar 2, 2022 at 23:02
  • 1 Using URLS as a primary user interface is indeed silly, but treating them as non-user facing is also not a great experience. I've tested use of # and had no issues. It only registers as a hash if it's at the end. Try it out. – Seph Reed Commented Mar 3, 2022 at 0:10
  • No # is the hash marker anywhere. Your own examples in your own answer to your own question demonstrate that: the output of the first snippet is What foo is: ?foo=abc123+-_$%23%?@,, the # character has been converted to %23. Because the .search setter srill does encode this char, because it would be defining the hash otherwise. If you want to show something "friendly" to your users don't show the URL, show each ponents on their own, decoded. – Kaiido Commented Mar 3, 2022 at 0:27
Add a ment  | 

1 Answer 1

Reset to default 9

If one wants all their searchParams to be unencoded, they can just set url.search to an unencoded version of itself:

const url = new URL("http://www.example./path");
const test = "abc123+-_$#%?@,"
url.searchParams.set("foo", test)
url.search = decodeURIComponent(url.search)

console.log(`What foo should be: ${test}`);
console.log(`What foo is: ${url.search}`)

If one only wants the specified key to be unencoded, it takes some extra

const testUrl = new URL("http://www.example./path");
testUrl.searchParams.set("bar", "++ ++");

const testVal = "abc123+-_$#%?@,";
setValueUnencoded(testUrl, "foo", testVal);


console.log(`What foo should be: ${testVal}`);
console.log(`What foo is: ${testUrl.search}`)


function setValueUnencoded(url, key, value) {
  url.searchParams.set(key, value);
  const entries = Array.from(url.searchParams.entries());
  url.search = "";
  entries.forEach(item => {
    if (item[0] === key) { return; }
    url.searchParams.set(item[0], item[1]);
  });
  url.search += `${key}=${value}`;
}

发布评论

评论列表(0)

  1. 暂无评论