如何在 Flutter Mobile App 中加载和查询本地 json 数据

Posted

技术标签:

【中文标题】如何在 Flutter Mobile App 中加载和查询本地 json 数据【英文标题】:How can I to load and query local json data in Flutter Mobile App 【发布时间】:2018-12-23 22:07:41 【问题描述】:

这是我的 key:value 配对的本地 json。我需要加载,稍后我需要用于查询。 那么,呢?


  "currency.01": "United State USD",
  "currency.17": "British Pound GBP",
  "currency.33": "Euro EUR",

【问题讨论】:

你可以使用pub.dartlang.org/packages/shared_preferences 【参考方案1】:

将您的 JSON 文件添加到 pubspec.yaml

  assets:
    - assets/config.json

然后你可以使用rootBundle来加载它

import 'dart:async' show Future;
import 'package:flutter/services.dart' show rootBundle;

Future<String> loadAsset() async 
  return await rootBundle.loadString('assets/config.json');

也看看这个full example 并用于查询将您的 JSON 数据转换为 LIST,然后您有很多搜索方法,例如 where 方法

【讨论】:

我的值为“01”,所以我也需要进行查询。我需要更改我的 json 数据,或者如果您知道如何使用现有数据进行查询,我将不胜感激。 谢谢@Raouf,我会测试一下。 谢谢!对我帮助很大。【参考方案2】:

rootBundle 通常只是答案的一部分。我也会做 jsonDecode 来返回一个实际的 json 格式。

import 'dart:convert';
import 'package:flutter/services.dart';

Future<String> loadAsset() async 
  return jsonDecode(await rootBundle.loadString('assets/config.json'));

然后在您的主服务器上,您现在可以将其加载到 List&lt;dynamic&gt; 以获取列表格式的 json 对象。

List<dynamic> response;
response = loadAsset();

然后您现在可以从这里访问您的值,

print(response['currency.01']);

输出:美国美元

【讨论】:

以上是关于如何在 Flutter Mobile App 中加载和查询本地 json 数据的主要内容,如果未能解决你的问题,请参考以下文章

谷歌的 Mobile UI 框架 Flutter Beta 3 发布

如何将“Flutter for Web”转换为“Flutter for Mobile”?

如何在flutter mobile中保存网站以供离线使用

Flutter mobile,播放midi文件

如何在 Flutter 中加入来自两个 Firestore 集合的数据?

如何在主方法 Flutter 中加载 json?