我对Flutter下拉菜单有疑问。当我选择其中一项时,会引发错误:
我正在搜索,人们告诉您,产生此错误是因为所选元素不属于原始列表,但是经过一些调试,我可以看到它确实存在。我找不到此错误的根源,因此,我将不胜感激。
这是我的代码
FeedCategory模型
import 'package:meta/meta.dart';
class FeedCategory {
static final dbId = "id";
static final dbName = "name";
int id;
String name;
FeedCategory({this.id, @required this.name});
FeedCategory.fromMap(Map<String, dynamic> map)
: this(
id: map[dbId],
name: map[dbName],
);
Map<String, dynamic> toMap() {
return {
dbId: id,
dbName: name,
};
}
@override
String toString() {
return 'FeedCategory{id: $id, name: $name}';
}
}
小部件
import 'package:app2date/repository/repository.dart';
import 'package:app2date/model/FeedSource.dart';
import 'package:app2date/model/FeedCategory.dart';
import 'package:app2date/util/ui.dart';
import 'package:flutter/material.dart';
class ManageFeedSource extends StatefulWidget {
ManageFeedSource({Key key, this.feedSource}) : super(key: key);
final FeedSource feedSource;
@override
_ManageFeedSource createState() => new _ManageFeedSource();
}
class _ManageFeedSource extends State<ManageFeedSource> {
FeedCategory _feedCategory;
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: Text('New Feed'),
),
body: new FutureBuilder(
future: Repository.get().getFeedCategories(),
builder: (BuildContext context, AsyncSnapshot snapshot) {
List<FeedCategory> categoriesList = snapshot.data;
if (categoriesList != null) {
return new DropdownButton<FeedCategory>(
hint: Text('Choose category...'),
value: _feedCategory,
items: categoriesList.map((FeedCategory category) {
return DropdownMenuItem<FeedCategory>(
value: category,
child: Text(category.name),
);
}).toList(),
onChanged: (FeedCategory category) {
print('Selected: $category');
setState(() {
_feedCategory = category;
});
},
);
} else {
return Container(
decoration: new BoxDecoration(color: Colors.white),
);
}
},
),
);
}
@override
void initState() {
super.initState();
}
}
存储库getFeedCategories方法
Future<List<FeedCategory>> getFeedCategories() async {
return await database.getFeedCategories();
}
数据库getFeedCategories方法
Future<List<FeedCategory>> getFeedCategories() async {
var dbClient = await db;
var query = "SELECT * FROM $feedCategoryTableName;";
var result = await dbClient.rawQuery(query);
List<FeedCategory> feedCategories = [];
for (Map<String, dynamic> item in result) {
feedCategories.add(new FeedCategory.fromMap(item));
}
return feedCategories;
}
分类列出内容和所选分类(调试器)
最佳答案
我想我已经解决了你的问题。它源于您使用FutureBuilder的方式。
我认为这是怎么回事:
obj 123 ==> FeedCategory(Prueba)
,obj 345 ==> FeedCategory(Categories 2)
您的_feedCategory现在等于
obj 123 ==> FeedCategory(Prueba)
obj 567 ==> FeedCategory(Prueba)
,obj 789 ==> FeedCategory(Categories 2)
items.where((DropdownMenuItem item) => item.value == value).length == 1
,但长度== 0,因为未找到obj 123 ==> FeedCategory(Prueba)
。 有两种解决方案来解决您的问题。一种方法是将equals operator添加到您的
FeedCategory
类中,以比较类别和/或ID。另一个办法是将futurebuilder中使用的Future与发生变化的部分分开-您可以通过将future保留为成员变量(可以在initState中实例化它)来实现,也可以通过将builder的内部部分放入其中来实现。自己的有状态小部件(在这种情况下,您可以将ManageFeedSource设置为StatelessWidget)。我建议最后一个选择。
让我知道这是否不能解决您的问题,但是我很确定这就是它正在做的事情的原因。
关于flutter - 在Flutter中选择下拉项时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52064607/