这是我的 key:value 成对的本地json。我需要加载,以后再用于查询。那么,如何在Flutter Mobile App中加载和查询本地json数据?
{ "currency.01": "United State USD", "currency.17": "British Pound GBP", "currency.33": "Euro EUR", }
将您的JSON文件添加到 pubspec.yaml
pubspec.yaml
assets: - assets/config.json
然后可以使用rootBundle它加载
rootBundle
import 'dart:async' show Future; import 'package:flutter/services.dart' show rootBundle; Future<String> loadAsset() async { return await rootBundle.loadString('assets/config.json'); }
还请看一下完整的示例, 并进行查询以将您的JSON数据转换为LIST,然后您就有了很多搜索方法,例如where方法