Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.4k views
in Technique[技术] by (71.8m points)

pass json list as header parameter of Dio Post method in Flutter/Dart

I want to send the list of cart items like this in the header parameter of Dio post method in FLutter/Dart.

https://www.example.com?cart=[{"product_id": "8", "category_id": "19", "shop_id": "11", "shop_name": "shopName", "quantity": "2", "descriptions": "test"}]

but the dio converts each fields into something like cart[0][product_id]=8

https://www.example.com?cart[0][product_id]=8&cart[0][category_id]=19&cart[0][shop_id]=11&cart[0][shop_name]=shopName&cart[0][quantity]=2&cart[0][descriptions]=test
question from:https://stackoverflow.com/questions/65617454/pass-json-list-as-header-parameter-of-dio-post-method-in-flutter-dart

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...