Can I pass an array in URL?

can I pass an array in this way id_list ?

http://localhost:8000/api/user_productmanage/server/list/?page=1&id_list=[24, 27, 33]
Can

Url pass arguments to an array, like above?

Url
Mar.20,2021

can pass anything, even json, but the escaped character has to be turned off, and the backend only gets a string, and the backend has to handle it to get the array.


encodeURI (your array)

Menu