gpt4 book ai didi

flutter - 在小部件上方找不到正确的提供者

转载 作者:行者123 更新时间:2023-12-03 03:31:58 25 4
gpt4 key购买 nike

我对Flutter相对较新,正在构建一个从API提取数据并在整个应用程序中的不同小部件上显示数据的应用程序。我正在使用提供程序执行API调用,并将反序列化的json存储在一个属性中,然后在initState函数中进行访问。下面是main.dart的小部件树,我想访问“仪表板”页面上此处提供的提供程序,因为这是需要该值的地方。我知道我在做什么错了,但是我错了多少呢?

  runApp(MaterialApp(
home: LoginPage(),
routes: routes,
));
}

class SampleApp extends StatefulWidget {
@override
SampleAppState createState() => SampleAppState();
}

class SampleAppState extends State<SampleApp> {
int currentIndex = 0;
final List<Widget> childPages = [
Page1(),
Page2(),
Page3(),
Page4()
];

void onTapped(int index) {
setState(() {
currentIndex = index;
});
}

@override
Widget build(BuildContext context) {
return MultiProvider(
providers: [
ChangeNotifierProvider(create: (context) => APIProvider())
],
child: Scaffold(
body: childPages[currentIndex],
bottomNavigationBar: BottomNavigationBar(
onTap: onTapped,
currentIndex: currentIndex,
fixedColor: Colors.lightBlue,
backgroundColor: Colors.white,
type: BottomNavigationBarType.fixed,
items: [
BottomNavigationBarItem(
icon: new Icon(Icons.dashboard),
title: new Text('Page 1'),
activeIcon: new Icon(
Icons.dashboard,
color: Colors.lightBlue,
)),
BottomNavigationBarItem(
icon: new Icon(Icons.list),
title: new Text('Page 2'),
activeIcon: new Icon(
Icons.list,
color: Colors.lightBlue,
)),
BottomNavigationBarItem(
icon: new Icon(Icons.collections_bookmark),
title: new Text('Page 3'),
activeIcon: new Icon(
Icons.collections_bookmark,
color: Colors.lightBlue,
)),
BottomNavigationBarItem(
icon: new Icon(Icons.person),
title: new Text('Page 4'),
activeIcon: new Icon(
Icons.person,
color: Colors.lightBlue,
)),
],
),
),
);
}
}
然后,我尝试像这样访问Page1中的提供程序值:
@override
void initState() {
valueFromProvider =
Provider.of<APIProvider>(context).providerValue;
super.initState();
}
可能是因为我试图在Page1小部件中访问的提供程序值为null,所以预先加载我的提供程序可以解决此问题吗?

最佳答案

您没有在正确的时间提供提供者。在您的情况下,您在第1页上添加了MultiProvider,但是您的上下文已经初始化,因此您无法访问它。为了正确访问它,您必须将MultiProvider移至初始化应用程序的位置,如下所示:

runApp(

MaterialApp(
home: MultiProvider(
providers: [
ChangeNotifierProvider(create: (context) => APIProvider())
],
child:LoginPage()
),
routes: routes,
));
这应该可以解决您的问题。

关于flutter - 在小部件上方找不到正确的提供者,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63361782/

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