我試圖發送請求到服務器我沒有太多的控制權。我唯一知道的是我能得到正確的響應,如果我在郵差axios發佈數組數據
x-www-form-urlencoded radio button checked
Entered the following 2 array data:
product_id_list[] pid1234
product_id_list[] pid1235
Header - Content-Type: application/x-www-form-urlencoded
Method: Post
發佈以下數據但是,當我試圖通過愛可信做到這一點,它似乎並不正確PARAMS數據可以打通。我試過
axios.post('https://test.com/api/get_product,
querystring.stringify({
'product_id_list': ['pid1234', 'pid1235']
}))
.
.
.
axios.post('https://test.com/api/get_product,
querystring.stringify({
'product_id_list[]': 'pid1234',
'product_id_list[]': 'pid1235'
}))
.
.
.
任何人都知道如何在axios中轉換這種類型的數組數據?