在flutter中显示来自API响应的完整json数据

时间:2021-03-23 12:29:08

标签: json api flutter dart restapi

我从 API 调用中获取 json 数据,但它没有显示完整的数据。有很多属性可以使用,创建模型会很困难,因为这是我第一次使用任何 API。所以我想使用 app.quicktype.io 将 json 数据直接解析为 dart 代码,我需要获取完整的 json 数据。现在控制台中只显示了一小部分 json 数据。

代码:

Future<void> getContacts() async {
    var client = http.Client();
    String contacts_url =
        'https://mylinkexample.com';
    String basicAuth =
        'Basic mykeyexampele';
    var response = await client.get(contacts_url,
        headers: <String, String>{'authorization': basicAuth});
    var jsonString = jsonDecode(response.body);
    print(response.statusCode);
    print(jsonString);
  }

1 个答案:

答案 0 :(得分:1)

使用这个:

import 'dart:developer' as developer;

test() {
  developer.log(response.body);
}