如何在Flutter中获取JSON数据

时间:2019-05-18 13:20:02

标签: dart flutter

我一直试图从Flutter应用程序中获取json数据。我设法在控制台上打印了整个json。我只想从此json获取“文本”值。我该怎么办? 这是json链接:Monit 我只想从JSON API中获取数字54 我得到的输出为: image

Future<String> fetchData ()async{
    var response1 = await get("http://motyar.info/webscrapemaster/api/?url=http://teertoday.com/&xpath=/html/body/div[5]/div/table/tbody/tr[3]/td[1]#vws");
    List teerModel =  json.decode(response1.body);
    print(teerModel[0]);

  } 


0 个答案:

没有答案