我想通过 Postman 发送ID数组
https://stackoverflow.com/questions/12756688/is-it-possible-to-send-an-array-with-the-postman-chrome-extension
我看了上面的线程,对我来说数组[] /数组[0]不工作,使用相同的键与不同的值为我工作. x1c 0d1x
它给出了
但我不能发送数组中的单个元素或空数组。
我在req.body中将其视为字符串
那我该怎么寄呢?
我想通过 Postman 发送ID数组
https://stackoverflow.com/questions/12756688/is-it-possible-to-send-an-array-with-the-postman-chrome-extension
我看了上面的线程,对我来说数组[] /数组[0]不工作,使用相同的键与不同的值为我工作. x1c 0d1x
它给出了
但我不能发送数组中的单个元素或空数组。
我在req.body中将其视为字符串
那我该怎么寄呢?
1条答案
按热度按时间2ul0zpep1#
因此,我只需要将urlencoded的扩展选项设置为true并使用arr[0],现在它可以工作了,只需将
express.urlencoded({extended : true});
设置为false,arr[]或arr[0]不起作用