'patient_age': patientAge!, 'test_date': testdate!, "test_id[]": testIDs[0].toString(),
我得到的API在body和postman中重复使用test_id[]作为测试ID列表,API测试工作正常。但是当我在body中尝试这个test_id[]时,它显示map不接受相同的键。如何发送此模式的列表?
test_id[]
u2nhd7ah1#
你应该尝试:
"test_id":testIDs
t5zmwmid2#
这在http包的HttpClient中不受支持(参见https://github.com/dart-lang/http/issues/47)。但是,似乎可以使用dio包:https://pub.dev/documentation/dio/latest/dio/ListFormat.html
http
dio
2条答案
按热度按时间u2nhd7ah1#
你应该尝试:
t5zmwmid2#
这在
http
包的HttpClient中不受支持(参见https://github.com/dart-lang/http/issues/47)。但是,似乎可以使用
dio
包:https://pub.dev/documentation/dio/latest/dio/ListFormat.html