How to correctly use axios params with arrays

后端 未结 7 483
臣服心动
臣服心动 2021-02-01 14:55

How to add indexes to array in query string?

I tried send data like this:

axios.get(\'/myController/myAction\', { params: { storeIds: [1,2,3] })
<         


        
7条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-02-01 15:10

    Without having to add more libraries and using ES6 you could write:

    axios.get(`/myController/myAction?${[1,2,3].map((n, index) => `storeIds[${index}]=${n}`).join('&')}`);
    

提交回复
热议问题