koajs / bodyparser

Koa body parsing middleware
MIT License
1.31k stars 116 forks source link

body conversion is not in line with expectations #96

Closed zhipenglin closed 6 years ago

zhipenglin commented 6 years ago

body info: pay%5B1%5D%5B3%5D=1&pay%5B2%5D=12

expect: {pay:{1:{3:1},2:12}}

result: {pay: [ [ '1' ], '12' ]}

dead-horse commented 6 years ago

body parser id dependent on qs when content type is from, please try json type.