我需要输入“Andorra(AD)”作为 list 的国家名称和国家代码。我可以将json加载到 map ,但无法转换为List。如何将json映射转换为列表字符串?

“国家/地区”:[
{
“countryCode”:“AD”,
“countryName”:“安道尔”,
“currencyCode”:“EUR”,
“isoNumeric”:“020”
},

最佳答案

您可以使用.map()函数

var countryList = country.map((c) => '${c["countryName"]} (${c["countryCode"]})').toList()

关于list - 如何将json映射转换为列表字符串?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/54287463/

10-09 04:21