How to correctly use axios params with arrays

后端 未结 7 497
臣服心动
臣服心动 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:00

    In my case, there was already jQuery implemented into my codebase. So I just used the predefined method.

    jQuery.param(Object)
    

提交回复
热议问题