这是我的React项目中的axios POST请求.labelIDs是一个长阵列,长度约为8000.
axios.post('http://localhost:3000/api/filter', {
'ids': labelIDs,
'like_ratio_range': ["0", "1"]
})
Run Code Online (Sandbox Code Playgroud)
我试过body-parser但它没有解决问题.知道如何配置axios post body limit?
或者这个API应该更好地设计?