json 如何在CarouselSlider flutter中显示图像列表

slhcrj9b  于 2022-11-19  发布在  Flutter
关注(0)|答案(1)|浏览(169)

我想显示一个列表的图像在转盘滑块,数据来自api。。如何显示来自列表的图像。
这是我的API

Future<List<ImageModel>> _getImageList() async {
final url =
    Uri.parse('http://45.34.15.25/API/api/v1/MerchandiseImage/GetMerchandiseImage?OrganizationId=1');
var response = await http.get(
  url,
  headers: {
    'Accept': 'application/json',
    'Content-Type': 'application/json',
    'tenant-code': 'flatworld',
  },
);


// print(response.body);
    if (response.body.isNotEmpty) {
      final result = jsonDecode(response.body);
      print(result);
      Iterable imageList = result["result"];
      print(imageList.length);
      return imageList.map((record) => ImageModel.fromJson(record)).toList();
} else {
  throw Exception("Failed to load data!");
}

}

n53p2ov0

n53p2ov01#

转盘滑块(_S):^4.1.1通过使用此插件,您可以完成。

相关问题