我想在 Flutter App 的 Listview 中显示我的 Json 数据

Posted

技术标签:

【中文标题】我想在 Flutter App 的 Listview 中显示我的 Json 数据【英文标题】:I want to show My Json Data in Listview in Flutter App 【发布时间】:2021-10-22 16:01:58 【问题描述】:

我想在列表视图中显示我所有的 json 数据。但问题是,当我想在 listview 中获取 idEmployee、officeID、avater 和 fullName 时,它​​会显示错误。

在不是“int”类型的子类型中键入“String”。

当我想使用 FutureBuilder 仅显示 fullName 时。如果我在模型类中注释了所有没有 fullName 的变量,它工作正常。但是当我想在没有 fullName 的情况下添加任何其他数据时,它会显示错误。

这是我想在列表视图中显示的 json 数据


    "success": true,
    "data": 
        "count": 259,
        "data": [
            
                "idEmployee": 3559,
                "avatar": "f8b8ad832a591db9c86a157a3739d98b.jpg",
                "fullName": "A X C",
                "officeID": "1003559",
                "email": "",
                "designation": "Account Manager",
                "department": "Accounts",
                "mobileNumber": "",
                "workStation": "Software Office",
                "businessUnit": "EMD"
            
        ]
    ,
    "id": 2899

这是我的模型类

class ListAlbum 
  final int idEmployee;
  final String avatar;
  final String fullName;
  final int officeID;
  final String email;
  final String designation;
  final String department;
  final String mobileNumber;
  final String workStation;
  final String businessUnit;

  ListAlbum(
    required this.idEmployee,
    required this.avatar,
    required this.fullName,
    required this.officeID,
    required this.email,
    required this.designation,
    required this.department,
    required this.mobileNumber,
    required this.workStation,
    required this.businessUnit,
  );

  factory ListAlbum.fromJson(Map<String, dynamic> json) 
    return ListAlbum(
      idEmployee: json['idEmployee'],
      avatar: json['avatar'],
      fullName: json['fullName'],
      officeID: json['officeID'],
      email: json['email'],
      designation: json['designation'],
      department: json['department'],
      mobileNumber: json['mobileNumber'],
      workStation: json['workStation'],
      businessUnit: json['businessUnit'],
    );
  

这是我的完整代码

现在我想通过解决这些错误在 Scaffold 中创建和添加列表视图。谁能给我示例代码或帮助创建此列表视图?提前致谢。

class OrganizationList extends StatefulWidget 
  const OrganizationList(Key? key) : super(key: key);

  @override
  _OrganizationListState createState() => _OrganizationListState();


class _OrganizationListState extends State<OrganizationList> 
  late Future<ListAlbum> futureAlbum;

  @override
  void initState() 
    super.initState();
    futureAlbum = listData();
  

  @override
  Widget build(BuildContext context) 
    return Scaffold(
      body: Center(
        child: FutureBuilder<ListAlbum>(
          future: futureAlbum,
          builder: (context, snapshot) 
            if (snapshot.hasData) 
              print(snapshot.data);
              return Text(snapshot.data!.fullName);
              // return Text(snapshot.data!.officeID.toString());   // in this line error shows. type 'String' in not a subtype of type 'int'
             else if (snapshot.hasError) 
              return Text('$snapshot.error');
            
            return const CircularProgressIndicator();
          ,
        ),
      ),
    );
  


Future<ListAlbum> listData() async 
  final token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI4OTksImlzcyI6Imh0dHBzOi8vcG9ydGFsLWFwaS5qb21ha2hhdGEuY29tL2FwaS9hdXRoL2xvZ2luIiwiaWF0IjoxNjI5NTI2OTc1LCJleHAiOjE2Mjk2MTMzNzUsIm5iZiI6MTYyOTUyNjk3NSwianRpIjoiRktiT295eEYwaEpDUXMxdiJ9.o4eM_C4hlluHe9Azk0MspPJtYZ7agdpFA6xwKiijLj8';
  String url =
      'https://portal-api.jomakhata.com/api/getOrganizationData?token=$token';

  Dio dio = new Dio();
  dio.options.headers['Content-Type'] = 'application/json';
  final body = 'limit': 10, 'orderBy': 'idEmployee', 'orderType': 'DESC';
  final response = await dio.post(url, data: body);

  if (response.statusCode == 200) 
    print(response.statusCode);
    print(response.data);
    var data = ListAlbum.fromJson(response.data["data"]["data"][0]);
    return data;
   else 
    throw Exception('Failed!');
  

【问题讨论】:

【参考方案1】:

根据您的 json 数据,您的 officeID 是一个字符串 "officeID": "1003559",

但在ListAlbum 中,该属性被定义为整数final int officeID;

ListAlbum 中的final int officeID; 更改为final String officeID;

而且.toString() 将不再需要。

根据 OP 要求进行编辑以获得更多帮助:

谢谢。我明白了。我的问题是什么。对我来说这是一个愚蠢的错误。你能帮我在 Scaffold 中创建列表视图来显示这些数据吗?

Future<List<ListAlbum>> listData() async 
  final token = 'eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJzdWIiOjI4OTksImlzcyI6Imh0dHBzOi8vcG9ydGFsLWFwaS5qb21ha2hhdGEuY29tL2FwaS9hdXRoL2xvZ2luIiwiaWF0IjoxNjI5NTI2OTc1LCJleHAiOjE2Mjk2MTMzNzUsIm5iZiI6MTYyOTUyNjk3NSwianRpIjoiRktiT295eEYwaEpDUXMxdiJ9.o4eM_C4hlluHe9Azk0MspPJtYZ7agdpFA6xwKiijLj8';
  String url =
      'https://portal-api.jomakhata.com/api/getOrganizationData?token=$token';

  Dio dio = new Dio();
  dio.options.headers['Content-Type'] = 'application/json';
  final body = 'limit': 10, 'orderBy': 'idEmployee', 'orderType': 'DESC';
  final response = await dio.post(url, data: body);

  if (response.statusCode == 200) 
    print(response.statusCode);
    print(response.data);
    List<Map<String,dynamic>> data = response.data["data"]["data"];
    List<ListAlbum> albums = data.map((json) => ListAlbum.fromJson(json)).toList();

    
    return albums;
   else 
    throw Exception('Failed!');
  

继续编辑您的FutureBuilder&lt;ListAlbum&gt;FutureBuilder&lt;List&lt;ListAlbum&gt;&gt; 并返回Listview.builder。更多关于如何使用Listview.builderhttps://flutter.dev/docs/cookbook/lists/long-lists的信息

【讨论】:

谢谢。我明白了。我的问题是什么。对我来说这是一个愚蠢的错误。你能帮我在 Scaffold 中创建列表视图来显示这些数据吗? 在这一行>List albums = data.map((json) => ListAlbum.fromJson(json));出现错误“无法将 'Iterable' 类型的值分配给 'List' 类型的变量。尝试更改变量的类型,或将右侧类型转换为 'List '。" 很抱歉给您带来不便,我已经编辑过了

以上是关于我想在 Flutter App 的 Listview 中显示我的 Json 数据的主要内容,如果未能解决你的问题,请参考以下文章

Flutter - 如何在 Listview 构建器顶部添加项目?

在 Flutter App 中调用平板纸扫描仪

在 Flutter App 中显示 PDF 或 PPT 文件

如何使 Android 和 iOS 的 Flutter App 崩溃(以测试 Firebase Crashlytics)?

Flutter)我想在socket断开时自动重新连接

我想在 Flutter 中创建一个照片抽屉