如您所见,我做了一个成功的请求。我的问题是我在下面打印过的3行。
var headerList = request.getAllResponseHeaders();
print("RunTime type of Header List: ${headerList.runtimeType}");
print("Header List Count: ${headerList.length}");
print("Header List is as follows: \n$headerList");
所以似乎请求,HttpRequest
没有返回足够的信息。我希望它能够返回所有标题信息的完整字符串,k => v对的映射或数组。
似乎它只获取了前64个字符。
为什么不能获得所有文件?理想情况下,我正在努力获得" Content-Disposition"标题,通过request.getResponseHeader("Content-Disposition");
,但是你可以想象,给定这些信息,它实际上将返回null,因为请求无法找到该信息。