How to add indexes to array in query string?
I tried send data like this:
axios.get(\'/myController/myAction\', { params: { storeIds: [1,2,3] }) <
axios.get(\'/myController/myAction\', { params: { storeIds: [1,2,3] })
In my case, there was already jQuery implemented into my codebase. So I just used the predefined method.
jQuery.param(Object)