gpt4 book ai didi

flutter - 如何将Future >转换为List
转载 作者:行者123 更新时间:2023-12-03 04:23:37 25 4
gpt4 key购买 nike

我从API获取值,并且它是Future<List<Object>>格式,如何将其转换为List<Objects>

我已经尝试使用Future Builder,但是它递归返回NoDataDialog Widget。

最佳答案

有两种处理异步功能的方法

第一个

_asyncFunction() async {
List list = await futureList;
}

第二个
_asyncFunction() {

Future.delayed(Duration(seconds: 10), () {
//this executes
}).then((_) {
//then this
});
}

关于flutter - 如何将Future <List <Object >>转换为List <Object>?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61143244/

25 4 0