我正在使用sqlite将数据存储在我的Flutter应用中。我有一个模态底片,该底片用过滤器芯片打开,当您选择一个时,会将其添加到数据库中。如果该项目已经存在,则检查滤片。当我调用数据库函数检查项目是否已经存在时,出现以下错误。
我尝试同时使用异步和等待。
数据库查询代码:
// FIND TAG
findTag(int tagId) async {
var dbConnection = await db;
var res = await dbConnection.query("$TABLE_NAME", where: "tagId = ?", whereArgs: [tagId]);
return res.isNotEmpty ? true : false ;
}
底部的模式小部件容器代码:
Widget build(BuildContext context) {
setState(() {
_index = widget.index;
_list =widget.list;
});
return new Container(
padding: new EdgeInsets.all(27.0),
child: new Column(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget> [
new Text(_list[_index]["title"], style: new TextStyle( fontWeight: FontWeight.bold, fontSize: 22),),
new Text(_list[_index]["description"]),
getFilterChipsWidgets(),
],
),
);
}
getFilterChipsWidgets()
async {
List<Widget> tagsList = new List<Widget>();
for(var i=0; i<_list[_index]["tags"].length; i++) {
var dbHelper = DBHelper();
int id = int.parse(_list[_index]["tags"][i]["id"]);
var exist = await dbHelper.findTag(id);
FilterChip item = new FilterChip(
label: Text(_list[_index]["tags"][i]["name"].toString(),),
selected: exist,
onSelected: (bool newValue) {
if(newValue) {
dbHelper.addNewTag(id);
} else {
dbHelper.deleteNewTag(id);
}
},
);
tagsList.add(item);
}
return Wrap(
spacing: 8.0, // gap between adjacent chips
runSpacing: 4.0, // gap between lines
children: tagsList,
);
}
答案 0 :(得分:3)
您的getFilterChipsWidgets()是异步函数,因此它将返回Future。 您可以等待未来,并保存小部件以列出并在完成后调用setState。 或像这样用FutureBuilder包装它:
children: <Widget> [
new Text(_list[_index]["title"], style: new TextStyle(fontWeight: FontWeight.bold, fontSize: 22),),
new Text(_list[_index]["description"]),
FutureBuilder<Widget>(
future: getFilterChipsWidgets,
builder: (BuildContext context, AsyncSnapshot<Widget> snapshot){
if(snapshot.hasData)
return snapshot.data;
return Container(child: CircularProgressIndicator());
}
),
],
答案 1 :(得分:1)
有时还看到错误地为您分配了功能async
,并且在功能块内部没有分配您正在使用await
进程的位置,
我已经发生过类似的情况,通过删除该函数上未使用的async
解决了以上问题。
当您创建任何功能async
时,功能请求者都会以Future<T>
的方式对待它,因此要小心。