标签: flutter dart
如何从下面的代码获取响应头?我正在使用dart http软件包。
Future<dynamic> get(String url) async { return _returnResponse(http.get(_location+url,headers: headers)); }
答案 0 :(得分:0)
我现在无法测试,但是您拥有headers Map<String, String>,我认为您可以使用它。
headers Map<String, String>