Postman输入List参数

看图



如果要输入一个arrayList,arr={1,2,3};

参数名   参数值

 arr[0]    111

arr[1]      222

If that doesn't work, try not putting indexes in brackets:

my_array[]  value1

my_array[]  value2

use form-data and edit as below:

Key      Value

box[]      a

box[n1]    b

box[n2][]  c

box[n2][]  d

{"box":{"0":"a","n1":"b","n2":["c","d"]}}

list传值


你可能感兴趣的:(Postman输入List参数)