_InternalLinkedHashMap<String, dynamic>' 不是 'List<Map<dynamic, dynamic>>' 类型的子类型
_InternalLinkedHashMap<String, dynamic>' is not a subtype of type 'List<Map<dynamic, dynamic>>'
void makeLoginReq() async {
String url = 'https://travel.prabidhee.com/api/login';
Map map = {
'email': email,
'password': password,
};
print(await apiRequest(url, map));
final response = await apiRequest(url, map);
print(response);
List<Map> reply = json.decode(response);
List<UserModelData> result = reply.map((item) => new UserModelData.fromJson(item)).toList();
print(result[0].accessToken);
}
Future<String> apiRequest(String url, Map jsonMap) async {
HttpClient httpClient = new HttpClient();
HttpClientRequest request = await httpClient.postUrl(Uri.parse(url));
request.headers.set('Accept', 'application/json');
request.headers.set('Content-type', 'application/json');
request.add(utf8.encode(json.encode(jsonMap)));
HttpClientResponse response = await request.close();
var reply = await response.transform(utf8.decoder).join();
httpClient.close();
print(reply);
return (reply);
}
}
远程服务器登录请求函数。登录后 json 响应被解码并存储在回复变量中。现在我想从响应中提取每个元素,如 access_token , token_type...我怎样才能做到这一点 ?
如异常所示,您的问题是您正在将地图转换为列表,这是不可能的。正如您不能将字符串转换为整数,或者您不能将雨虫视为一匹马并骑在它身上直到日落。
问题当然是为什么会这样:
该行json.decode(response)
returns 一个映射但是你要分配给这个映射的变量可能只存储一个列表。
例如,如果您的回复如下所示:
{
"body": [
"Alisa",
"Alex",
"Boby",
"Monica"
]
}
然后你的 json.decode(response)
将是 Map<String, List>("body" to ["Alisa", ...])
,所以 body 被映射到名称。
假设您想要将列表与其他 json 隔离,您可以只执行 json.decode(response).get("body")
或者如果您 json 看起来不同,您还可以通过调用获取映射中的所有值或键json.decode(response).values()
或 json.decode(response).keys()
.
void makeLoginReq() async {
String url = 'https://travel.prabidhee.com/api/login';
Map map = {
'email': email,
'password': password,
};
print(await apiRequest(url, map));
final response = await apiRequest(url, map);
print(response);
List<Map> reply = json.decode(response);
List<UserModelData> result = reply.map((item) => new UserModelData.fromJson(item)).toList();
print(result[0].accessToken);
}
Future<String> apiRequest(String url, Map jsonMap) async {
HttpClient httpClient = new HttpClient();
HttpClientRequest request = await httpClient.postUrl(Uri.parse(url));
request.headers.set('Accept', 'application/json');
request.headers.set('Content-type', 'application/json');
request.add(utf8.encode(json.encode(jsonMap)));
HttpClientResponse response = await request.close();
var reply = await response.transform(utf8.decoder).join();
httpClient.close();
print(reply);
return (reply);
}
}
远程服务器登录请求函数。登录后 json 响应被解码并存储在回复变量中。现在我想从响应中提取每个元素,如 access_token , token_type...我怎样才能做到这一点 ?
如异常所示,您的问题是您正在将地图转换为列表,这是不可能的。正如您不能将字符串转换为整数,或者您不能将雨虫视为一匹马并骑在它身上直到日落。
问题当然是为什么会这样:
该行json.decode(response)
returns 一个映射但是你要分配给这个映射的变量可能只存储一个列表。
例如,如果您的回复如下所示:
{
"body": [
"Alisa",
"Alex",
"Boby",
"Monica"
]
}
然后你的 json.decode(response)
将是 Map<String, List>("body" to ["Alisa", ...])
,所以 body 被映射到名称。
假设您想要将列表与其他 json 隔离,您可以只执行 json.decode(response).get("body")
或者如果您 json 看起来不同,您还可以通过调用获取映射中的所有值或键json.decode(response).values()
或 json.decode(response).keys()
.