Flutter-从JSON源创建List变量

时间:2018-09-19 12:22:04

标签: json variables dart flutter

我正在尝试使用来自文件crypoUrl的{​​{1}}和来自this Git Repo_currencies.name的数据来从JSON源crypto_data.dart创建变量列表。

如果可能的话,您能告诉我如何在crypto_data_prod.dart中执行所有操作,然后如何使用类似home_page.dart的结果将结果打印到调试终端

谢谢杰克

1 个答案:

答案 0 :(得分:1)

我克隆并运行了您的应用程序。 crypto_data_prod.dart中有一个编译错误。

如果您使用的是命名导入,请使用

import 'dart:convert' as JSON; // named import (importing convert lib as JSON)

final List responseBody = JSON.jsonDecode(response.body); // using with name

如果要不使用命名导入,则使用

import 'dart:convert'; // importing the lib without any name

final List responseBody = jsonDecode(response.body); // using the method directly

然后我得到了这个屏幕,

enter image description here

您想解决其他问题吗?