Я пытаюсь создать запрос API во Flutter, но в ответ получаю следующую ошибку
тип 'List<dynamic>' не является подтипом типа 'Map<String, dynamic>'
Я пытаюсь создать первый API и, пожалуйста, дайте мне знать, подходит ли этот подход.
вот мой код
import 'package:flutter/material.dart';
class Product {
final int id;
final String title, description;
final String images;
final List<Color> colors;
final double price;
final double rating;
final bool isFavourite, isPopular;
Product(
{this.id,
this.images,
this.colors,
this.title,
this.price,
this.rating,
this.description,
this.isFavourite,
this.isPopular});
factory Product.fromJson(Map<String, dynamic> json) {
return Product(
id: json['id'],
images: json['images'],
title: json['title'],
price: json['price'],
rating: json['rating'],
description: json['description'],
);
}
}
Future<Product> fetchProd() async {
final response = await http.get('https://test.com/sampleapi.php');
if (response.statusCode == 200) {
// If the server did return a 200 OK response,
// then parse the JSON.
return Product.fromJson(jsonDecode(response.body));
} else {
// If the server did not return a 200 OK response,
// then throw an exception.
throw Exception('Failed to load album');
}
}
class ProdList extends StatefulWidget {
@override
_ProdListState createState() => _ProdListState();
}
class _ProdListState extends State<ProdList> {
Future<Product> futureProdLists;
@override
void initState() {
super.initState();
futureProdLists = fetchProd();
}
@override
Widget build(BuildContext context) {
return Column(children: [
Padding(
padding:
EdgeInsets.symmetric(horizontal: getProportionateScreenWidth(20)),
child: SectionTitle(title: "Popular Products", press: () {}),
),
SizedBox(height: getProportionateScreenWidth(20)),
SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: FutureBuilder<Product>(
future: futureProdLists,
builder: (context, snapshot) {
print(snapshot);
if (snapshot.hasData) {
return Text(snapshot.data.title);
} else if (snapshot.hasError) {
return Text("${snapshot.error}");
}
Вот мой пример API
[
{
"id": "0001",
"images": "assets/images/ps4_console_white_1.png",
"title": "Wireless Controller for PS4",
"price": 25,
"description": "description",
"rating": 4.8,
"rating (copy)": 4.8,
"isFavourite": true,
"isPopular": true
},
{
"id": "0001",
"images": "assets/images/ps4_console_white_1.png",
"title": "Wireless Controller for PS4",
"price": 25,
"description": "description",
"rating": 4.8,
"rating (copy)": 4.8,
"isFavourite": true,
"isPopular": true
},
{
"id": "0001",
"images": "assets/images/ps4_console_white_1.png",
"title": "Wireless Controller for PS4",
"price": 25,
"description": "description",
"rating": 4.8,
"rating (copy)": 4.8,
"isFavourite": true,
"isPopular": true
},
{
"id": "0001",
"images": "assets/images/ps4_console_white_1.png",
"title": "Wireless Controller for PS4",
"price": 25,
"description": "description",
"rating": 4.8,
"rating (copy)": 4.8,
"isFavourite": true,
"isPopular": true
},
{
"id": "0001",
"images": "assets/images/ps4_console_white_1.png",
"title": "Wireless Controller for PS4",
"price": 25,
"description": "description",
"rating": 4.8,
"rating (copy)": 4.8,
"isFavourite": true,
"isPopular": true
}
]
Дело в том, что ваш api
ответ дает вам json
массив объекта продукта, и вы пытаетесь преобразовать массив в объект продукта, который является проблемой.
Теперь вам нужно перебрать массив json
и преобразовать каждый элемент в объект Product и сохранить их в списке.
Замените свой метод fetchProd
приведенным ниже фрагментом кода.
Future<List<Product>> fetchProd() async {
List<Product> prodList = [];
final response = await http.get('https://test.com/sampleapi.php');
if (response.statusCode == 200) {
// If the server did return a 200 OK response,
// then parse the JSON.
var jsonList = jsonDecode(response.body);
for(var prod in jsonList){
prodList.add(Product.fromJson(prod));
}
return prodList;
} else {
// If the server did not return a 200 OK response,
// then throw an exception.
throw Exception('Failed to load album');
}
}
Поскольку @Saiful Islam, его API возвращает массив JSON, а не объект json, так что это список, а не карта.
Я обновил код, так что попробуйте прямо сейчас. @веллаи дураи
попробуй это
Future<Product> fetchProd() async {
final response = await http.get('https://test.com/sampleapi.php');
if (response.statusCode == 200) {
// If the server did return a 200 OK response,
// then parse the JSON.
return (response.body as List)
.map((item) => Product.fromJson(item))
.toList();
} else {
// If the server did not return a 200 OK response,
// then throw an exception.
throw Exception('Failed to load album');
}
}
Это точно сработает.
final Product product = productFromJson(jsonString);
import 'dart:convert';
List<Product> productFromJson(String str) => List<Product>.from(json.decode(str).map((x) => Product.fromJson(x)));
String productToJson(List<Product> data) => json.encode(List<dynamic>.from(data.map((x) => x.toJson())));
class Product {
Product({
this.id,
this.images,
this.title,
this.price,
this.description,
this.rating,
this.ratingCopy,
this.isFavourite,
this.isPopular,
});
String id;
String images;
String title;
int price;
String description;
double rating;
double ratingCopy;
bool isFavourite;
bool isPopular;
factory Product.fromJson(Map<String, dynamic> json) => Product(
id: json["id"],
images: json["images"],
title: json["title"],
price: json["price"],
description: json["description"],
rating: json["rating"].toDouble(),
ratingCopy: json["rating (copy)"].toDouble(),
isFavourite: json["isFavourite"],
isPopular: json["isPopular"],
);
Map<String, dynamic> toJson() => {
"id": id,
"images": images,
"title": title,
"price": price,
"description": description,
"rating": rating,
"rating (copy)": ratingCopy,
"isFavourite": isFavourite,
"isPopular": isPopular,
};
}
Значение типа «List<Product>» не может быть возвращено функцией «fetchProd», так как оно имеет возвращаемый тип «Future<Product>».dartreturn_of_invalid_type