gpt4 book ai didi

dart - Json String to Map<> or List

转载 作者:IT王子 更新时间:2023-10-29 06:53:52 24 4
gpt4 key购买 nike

我有一个像下面这样存储为字符串的 json

String json="[{"name":"a","id",1},{"name":"b","id",2},{"name":"c","id",3}]";

我的问题如何将其编码为映射或列表以访问键并使用值?

最佳答案

您需要先对值进行 JSON 解码

import 'dart:convert';

final decoded = jsonDecode(json);
print(decoded[0]['name']); // just one example

关于dart - Json String to Map<> or List,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54733527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com