- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在关注 Resocoder tutorial关于如何使用 RiverPod 和 StateNotifier 管理状态。
关于如何在初始加载时使用默认值调用 .getWeather
让我大吃一惊。该示例仅说明了在 onPressed(..)
函数中使用 context.read(..)
,这是 riverpod 文档中推荐的。
但是您实际上如何在加载时进行调用,因为这意味着在构建方法中调用 context.read
,这是非常不鼓励的。 (在本 section 的最后一部分提到)
最佳答案
因为 .getWeather
是一个 Future 函数,你实际上可以在 WeatherNotifier
的构造函数中添加 future 的初始化,让它自己更新状态。
final weatherNotifierProvider = StateNotifierProvider(
(ref) => WeatherNotifier(ref.watch(weatherRepositoryProvider)),
);
class WeatherNotifier extends StateNotifier<WeatherState> {
final WeatherRepository _weatherRepository;
WeatherNotifier(this._weatherRepository) : super(WeatherInitial()){
getWeather('some city name'); // add here
}
Future<void> getWeather(String cityName) async {
try {
state = WeatherLoading();
final weather = await _weatherRepository.fetchWeather(cityName);
state = WeatherLoaded(weather);
} on NetworkException {
state = WeatherError("Couldn't fetch weather. Is the device online?");
}
}
}
关于flutter - 使用 RiverPod 和 StateNotifiers 在加载时调用函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65763713/
我正在开发一个新的应用程序并使用状态通知器测试 Riverpod,并且有一个关于在构建页面时可以在哪里加载初始数据的问题。 我有以下状态类: abstract class SalesOrderList
我想手动覆盖我的 StateNotifierProvider 状态以进行测试。可以使用 ProviderContainer 或 ProviderScope 覆盖提供程序。但它只提供覆盖通知程序的选项,
在使用 Riverpod 作为我的状态管理工具时,我一直在使用我发现的反模式。我做了用户问的this question did: 更新你想改变的属性并添加state = state。这个解决方案一直有
我是 flutter 和 riverpod 的新手,所以如果问题不清楚,我非常抱歉,如果是这种情况,请告诉我 我有 2 个提供程序,一个监听 FireStore 集合的实时变化,另一个是列表服务,用于
我正在关注 Resocoder tutorial关于如何使用 RiverPod 和 StateNotifier 管理状态。 关于如何在初始加载时使用默认值调用 .getWeather 让我大吃一惊。该
我正在关注 Resocoder tutorial关于如何使用 RiverPod 和 StateNotifier 管理状态。 关于如何在初始加载时使用默认值调用 .getWeather 让我大吃一惊。该
我想学习如何使用 Riverpod ,因此为此,我正在实现一个小应用程序,该应用程序显示一个项目列表和一个按钮,该按钮在点击时将一个虚拟项目添加到列表中。 问题背景 在以下应用中按下按钮会按预期工作(
我有下面的示例,它确实刷新了数据,但没有按预期提供微调器。我尝试使用 ref.listen 切换到异步加载,我尝试在调用前等待,即使它没有意义。 我尝试了 ref.refresh、ref.invali
我是一名优秀的程序员,十分优秀!