gpt4 book ai didi

dart - 如何在继续 flutter 之前等待 future 的对象?

转载 作者:IT老高 更新时间:2023-10-28 12:40:21 26 4
gpt4 key购买 nike

我正在编写一个使用 SQFlite 数据库的 Flutter 代码。我想从 Assets 中插入图像小部件,并从数据库中获取图像的名称。

    @override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(title: Text("Single Line diagram"),backgroundColor: Colors.red.shade700,),
body: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Align(
//alignment: Alignment.center,
child: SingleChildScrollView(
scrollDirection: Axis.vertical,
child: Row(
//crossAxisAlignment: CrossAxisAlignment.center,
children: imageList(),
),
),
)
),
);
}

上面的代码调用 imageList() 来显示要显示的图像列表。

List<Widget> imageList(){
List<Widget> singleLineImages = new List();
List unit;
for (int i = 0; i <= widget.unitsList.length-1; i++){
for (int j = 1; j <= int.parse(widget.unitsList[i].quantity); j++){
print("${widget.unitsList[i].bulletin}, ${widget.unitsList[i].mountType}, ${widget.unitsList[i].disconnect}");
getfileName(widget.unitsList[i].bulletin, widget.unitsList[i].mountType, widget.unitsList[i].disconnect);
//if(fileName != null) {
singleLineImages.add(
Image.asset("images/SD_Files_2100/$fileName.jpg", height: 400.0, width: 200.0,));
//}
}
}
return singleLineImages;
}

我从使用数据库的 getFileName() 方法获取文件名。

getfileName(String bulletin, String mountType, String disconnect)async {
fileNameList = await db.getSDfileName(bulletin, disconnect, mountType);
fileName = fileNameList[0]['FileName'];
print("filename: $fileName");
}

现在,在调用 getFileName() 之后,程序不再等待 fileName 并继续进行,它将 filename as null。在 Image.asset 代码之后正确获取文件名。 有什么方法可以让程序等到获得正确的文件名?

最佳答案

initState() 中开始获取列表,并在获取列表时调用 setState,以异步方式执行此操作。您可以在下面找到此过程的简化示例。还要注意获取文件名之前的等待语句。这可以确保您在执行完之后返回到那段代码。

class ListPage extends StatefulWidget {
@override
_ListPageState createState() => _ListPageState();
}

class _ListPageState extends State<ListPage> {
// This should actually be a List<MyClass> instead of widgets.
List<Widget> _list;

@override
void initState() {
super.initState();
_fetchList();
}

Future _fetchList() async {
List<Widget> singleLineImages = new List();
List unit;
for (int i = 0; i <= widget.unitsList.length-1; i++){
for (int j = 1; j <= int.parse(widget.unitsList[i].quantity); j++){
print("${widget.unitsList[i].bulletin}, ${widget.unitsList[i].mountType}, ${widget.unitsList[i].disconnect}");
String fileName = await getfileName(widget.unitsList[i].bulletin, widget.unitsList[i].mountType, widget.unitsList[i].disconnect);
singleLineImages.add(
Image.asset("images/SD_Files_2100/$fileName.jpg", height: 400.0, width: 200.0,));
}
}

// call setState here to set the actual list of items and rebuild the widget.
setState(() {
_list = singleLineImages;
});
}

@override
Widget build(BuildContext context) {
// Build the list, or for example a CircularProcessIndicator if it is null.
}
}

旁注:您正在对数据库进行大量调用,这可能效率低下。尝试在单个 db 调用中获取所需的数据。但这是另一个话题。

关于dart - 如何在继续 flutter 之前等待 future 的对象?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53608048/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com