“我在亚马逊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();
});
答案 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');
}
}