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