【填坑】Unhandled Exception: type 'List ' is not a subtype of type 'String' in type cast


 

原代碼:

var Params = {
"tokens":["1"],
"data": "123",
};
final response = await http.post(url, body: Params); //post請求

解決辦法:
Map<String, dynamic> body = {
"tokens":["1"],
"data": "123",
};
var response = await Dio()
.post("http://192.168.1.100:4001/api",data: body);
print(response);

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM