将Future转换< int>为int in flutter dart

t5fffqht  于 2023-10-13  发布在  Flutter
关注(0)|答案(4)|浏览(133)

我正在使用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”类型的变量。

vsnjm48y

vsnjm48y1#

我通过为OnPressed添加Pwc解决了这个问题

onPressed: () async {...}

然后使用这行代码

int count = await getCount();

thx

eimct9ow

eimct9ow2#

使用await获取Future的响应

int number = await getNumberOfUsers();

int count = await getCount();
yfwxisqw

yfwxisqw3#

你所需要做的就是在调用Future之前设置关键字“await”:
你做什么:

int count = getCount();

什么是正确的:

int count = await getCount();
hujrc8aj

hujrc8aj4#

you need to add the "await" keyword before calling the function

int count = getCount();

相关问题