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, I am using someting like this
const params = array.map((v)=>{ return `p=${v}&` })
Only concat params.join('') to the URL where you get data:
params.join('')
`url_to_get?${params.join('')`
In my back-end in ASP.net I receive this
[FromUri] string [] p