Dart / Flutter的新手在为JSON响应分配布尔值时遇到了问题-bool error
是null
,我得到了:
断言失败:布尔表达式不能为空
我不知道发生了什么,因为响应已正确解码,其他字段也没有问题(请查看Logcat输出)。
这是我的JSON:
{
"error:":false,
"id":1,
"name":"test"
}
我的未来:
Future<dynamic> fetchData() async {
http.Response response = await http.get(Values.URL, headers: {HttpHeaders.contentTypeHeader: "application/json"});
if (response.statusCode == 200) {
debugPrint(response.body);
var body = jsonDecode(response.body);
bool error = body["error"];
var id = body["id"];
var name = body["name"];
print("bool:" + error.toString());
print("id:" + id.toString());
print("name:" + name);
if (error) {
print("no error");
} else {
print("error");
}
} else {
throw Exception("statusCode exception e");
}
和Logcat输出:
I/flutter: {
I/flutter: "error:":false,
I/flutter: "id":1,
I/flutter: "name":"test"
I/flutter: }
I/flutter: bool:null
I/flutter: id:1
I/flutter: name:test
I/flutter: Failed assertion: boolean expression must not be null
您能告诉我我在做什么错吗? 任何帮助都感激不尽!谢谢:)
答案 0 :(得分:1)
我要感谢GünterZöchbauer指出我在JSON结构中的愚蠢错误:
"error:":false
应为:
"error":false
别忘了与编码专家们休息一下...;)