gpt4 book ai didi

flutter - 参数类型 'List>>' 无法分配给参数类型 'List>'

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

在 flutter 中,我正在使用 TMDB API 并从那里获取流派名称,并想在我的 DropdownButton 上显示它们,但我遇到了这个错误。

The argument type List < Iterable< DropdownMenuItem< int>>> can't be assigned to the parameter type 'List< DropdownMenuItem< dynamic>>

{
"genres": [
{
"id": 28,
"name": "Action"
},
{
"id": 12,
"name": "Adventure"
},
{
"id": 16,
"name": "Animation"
}, .......]
}

这是 json。

return DropdownButton(
items: [ snapGenre.data.genres.map((map) => DropdownMenuItem(child: Text(map.name),value: map.id,))]
);
}

这部分是我试过的。

简单地说,我想做的是,我想根据从 API 获得的流派名称数量返回/创建一个 dropDownMenuItem。我错过了哪一部分,你能帮帮我吗。

最佳答案

您正在使用 [] 声明一个 List,然后将您的数据映射到其中,所以您最终得到了一个 Iterable一个列表。相反,您必须删除 [] 并将 Iterable 转换为末尾的 List:

return DropdownButton(
items: snapGenre.data.genres.map((map) => DropdownMenuItem(
child: Text(map.name),
value: map.id,
),
).toList(),
);

关于flutter - 参数类型 'List<Iterable<DropdownMenuItem<int>>>' 无法分配给参数类型 'List<DropdownMenuItem<dynamic>>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56194874/

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