我正在使用未来的构建器来构建列表视图。我收到来自服务器的响应。我得到了我需要的东西。我正在尝试解决一个错误。错误是当我使用http.get
方法从服务器获取数据时:String data=response.body;
我得到了我想要的正确响应,我将其解析为String catagoeryId=jsonDecode(data)["data"][i]["_id"];
现在我在解码这个json时遇到的问题是我使用for循环在我的构造函数中传递了这个String。但我必须给长度以停止循环。我使用的长度是:data.length
。它解码我的 json 响应并在我的构造函数中传递。但是在 json 长度结束后它停止工作并崩溃。我检查了它的长度 data.length
在 344 左右。但我只有 3 个对象。这是我用于解析的代码:
Future<List<ProductCatagoery>> getCatagories()async{
http.Response response = await http.get("http://138.68.134.226:3020/api/category/");
List<ProductCatagoery> products=[];
String data=response.body;
for (int i=0;i<=data.length;i++) {
String catagoeryId=jsonDecode(data)["data"][i]["_id"];
String catagoeryThumb=jsonDecode(data)["data"][i]["thumb"];
String catagoeryName=jsonDecode(data)["data"][i]["name"];
bool catagoeryActive=jsonDecode(data)["data"][i]["active"];
print('name is: $catagoeryId : $catagoeryThumb : $catagoeryName : $catagoeryActive');
ProductCatagoery newUser=
ProductCatagoery(catagoeryId,catagoeryThumb,catagoeryName,catagoeryActive);
products.add(newUser);
print('added ${newUser.id}');
print('length is${products.length}');
print('last length data: ${data.length}');
}
return products;
}
型号类:
class ProductCatagoery {
final String id;
final String thumb;
final String name;
final bool active;
ProductCatagoery(this.id,this.thumb,this.name,this.active);
}
回应是:
{"success":true,"data":[{"_id":"5f13cc94c63abc03522eff41","thumb":"category/fresh-meat.jpg","name":"Fresh Meat","active":true} ,{"_id":"5f13cc73c63abc03522eff40","thumb":"category/fruits-vegetables.jpg","name":"水果和蔬菜","active":true},{"_id":"5f13cca5c63abc03522eff42", "thumb":"category/grocery.jpg","name":"Grocery","active":true}]}
注意:我只需要String data=response.body;
数据长度。我没有使用地图等。如果我在第 1 次、第 2 次或第 3 次迭代后返回产品列表,我也会在列表中显示产品。