【发布时间】:2020-04-12 18:28:43
【问题描述】:
这是我的回应 http://dummy.restapiexample.com/api/v1/employees
我正在显示来自 api 的列表,我在 response.body 中得到了完美的响应,但随后不知道发生了什么
我的 PODO 或模型是
class NewData {
String id;
String employeeName;
String employeeSalary;
String employeeAge;
String profileImage;
NewData(
{this.id,
this.employeeName,
this.employeeSalary,
this.employeeAge,
this.profileImage});
factory NewData.fromJson(Map<String, dynamic> json) => NewData(
id: json["id"],
employeeName: json["employee_name"],
employeeSalary: json["employee_salary"],
employeeAge: json["employee_age"],
profileImage: json["profile_image"],
);
Map<String, dynamic> toJson() {
final Map<String, dynamic> data = new Map<String, dynamic>();
data['id'] = this.id;
data['employee_name'] = this.employeeName;
data['employee_salary'] = this.employeeSalary;
data['employee_age'] = this.employeeAge;
data['profile_image'] = this.profileImage;
return data;
}
}
我的 Main.dart 是
body: Container(
child: Column(
children: <Widget>[
FutureBuilder<NewData>(
future: fetchPost(),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.done) {
if (snapshot.hasError) {
return Text("ERROR : - " + snapshot.error.toString());
}
List<NewData> data = snapshot.data as List<NewData>;
return new ListView.builder(
itemCount: data.length,
itemBuilder: (context, index) {
return new ListTile(
title: new Text(data[index].employeeName),
);
},
);
} else {
// By default, show a loading spinner.
return Center(
child: CircularProgressIndicator(),
);
}
}),
],
),
),
);
}
Future<NewData> fetchPost() async {
var response = await http.get(url);
if (response.statusCode == 200) {
// If server returns an OK response, parse the JSON.
var resp = json.decode(response.body);
print(resp.toString());
return NewData.fromJson(resp);
} else {
// If that response was not OK, throw an error.
throw Exception('Failed to load post');
}
}
但我得到了这个错误
类型“列表”不是类型“字符串”的子类型
帮我解决这个问题 我如何摆脱这个?
【问题讨论】:
-
我正在解释错误,您在分配为字符串时获取数组,即它的含义
-
这个错误本质上是告诉你你得到了一个列表,而 Flutter 需要一个字符串。您能否分享一个您正在解析的 JSON 示例?
标签: flutter