代码之家  ›  专栏  ›  技术社区  ›  Husna

如何从JSON对象中检索多个值

  •  0
  • Husna  · 技术社区  · 6 年前

    我正在使用Flutter开发一个移动应用程序。

    我是JSON新手。如何从JSON对象中检索多个值?

    body: new Column(
      children: <Widget>[
       new ListTile(
        title: new Text("$(_jsondata['name'])"),// json object calling
       ), 
      ]
     );
    

    desc , url id 其他领域。我试过了 $(_jsondata['name']['desc']) 但无法实现。

    1 回复  |  直到 6 年前
        1
  •  1
  •   Raouf Rahiche AbdulMomen عبدالمؤمن    6 年前

    你的 _jsondata is Map is String and dynamic要获取字段的值,请使用它的名称,如下所示 _jsondata['name'] _jsondata['url']

    • 考虑阅读 this 文档中的文章演示