标签: dart
什么是dart语言中JSON的标头库? 我需要从字符串中解析并将其转换为map。
var jsonData = JSON.parse('{"x":1, "y":2}');
什么是标头库?
答案 0 :(得分:0)
要解析JSON,请导入dart:convert并使用json.decode(或jsonDecode,这只是前者的简写)。
dart:convert
json.decode
jsonDecode