我正在使用sqflite,我正在通过下面的代码获取特定记录的行数:
Future<int> getNumberOfUsers() async {
Database db = await database;
final count = Sqflite.firstIntValue(
await db.rawQuery('SELECT COUNT(*) FROM Users'));
return count;
}
Future<int> getCount() async {
DatabaseHelper helper = DatabaseHelper.instance;
int counter = await helper.getNumberOfUsers();
return counter;
}
我想把这个函数的结果放到int变量中,以便在FloatingActionButton
中的onPressed
中使用它。
int count = getCount();
int countParse = int.parse(getCount());
return Stack(
children: <Widget>[
Image.asset(
kBackgroundImage,
height: MediaQuery.of(context).size.height,
width: MediaQuery.of(context).size.width,
fit: BoxFit.cover,
),
Scaffold(
floatingActionButton: FloatingActionButton(
backgroundColor: Colors.white,
child: Icon(
Icons.add,
color: kButtonBorderColor,
size: 30.0,
),
onPressed: () {
showModalBottomSheet(
context: context,
builder: (context) => AddScreen(
(String newTitle) {
setState(
() {
//--------------------------------------------
//I want to get the value here
int count = getCount();
int countParse = int.parse(getCount());
//--------------------------------------------
if (newTitle != null && newTitle.trim().isNotEmpty) {
_save(newTitle);
}
},
);
},
),
);
},
),
但我得到了这个例外
不能将“Future”类型的值赋给“int”类型的变量。
4条答案
按热度按时间vsnjm48y1#
我通过为OnPressed添加Pwc解决了这个问题
然后使用这行代码
thx
eimct9ow2#
使用
await
获取Future
的响应yfwxisqw3#
你所需要做的就是在调用Future之前设置关键字“await”:
你做什么:
什么是正确的:
hujrc8aj4#
int count = getCount();