从S3存储桶读取JSON文件

时间:2019-05-27 10:52:37

标签: file http flutter dart

“我在亚马逊s3存储桶上有一个带有url的文件,该文件为json格式,我想读取该文件并将其存储在列表中”

HttpClient().getUrl(Uri.parse("mobile_app_air_ports.json"))
.then((HttpClientRequest request)=> request.close())
.then((HttpClientResponse response){
Future<List<String>> 
test=response.transform(Utf8Decoder()).toList();
});

1 个答案:

答案 0 :(得分:0)

您需要创建数据模型,然后解析JSON:

import 'dart:convert';


class YourDataModel {
  final String yourData;

  Post({this.yourData});

  YourDataModel.fromJson(Map<String, dynamic> json) {
    return YourDataModel(
      yourData: json['yourData'],
    );
  }
}
Future<List<String>> fetchData() async {
  final response =
      await http.get('mobile_app_air_ports');

  if (response.statusCode == 200) {
    // If server returns an OK response, parse the JSON
    return (json.decode(response.body) as List<dynamic>)
        .map<YourDataModel>((item) => YourDataModel.fromMap(item))
        .toList();

  } else {
    // If that response was not OK, throw an error.
    throw Exception('Failed to load post');
  }
}