简体   繁体   中英

what is different of set vs append

In Javascript, URLSearchParams Is it different "set" between "append"?

const test = new URLSearchParams();
test.append("name", "Harry Potter");
const test = new URLSearchParams();
test.set("name", "Harry Potter");

^ different?

The difference becomes easy to see when you call the methods twice. With append , both values are included in the URL, while with set , any present value will be overridden.

const url = new URLSearchParams()
url.append("name", "Harry Potter")
url.append("name", "Hermione Granger")
url.toString() // "name=Harry+Potter&name=Hermione+Granger"
const url = new URLSearchParams()
url.set("name", "Harry Potter")
url.set("name", "Hermione Granger")
url.toString() // "name=Hermione+Granger"

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM