要访问 StateProvider 或 StateNotifierProvider 的状态:
有时在 Riverpod 文档中,在 watch 函数之后添加了 state 变量。
int count = watch(counterProvider).state;
但是,我使用 StateNotifier 的代码只有在我在 watch 中引用它时才有效。IE
watch(myNotifier.state)
有什么区别?
要访问 StateProvider 或 StateNotifierProvider 的状态:
有时在 Riverpod 文档中,在 watch 函数之后添加了 state 变量。
int count = watch(counterProvider).state;
但是,我使用 StateNotifier 的代码只有在我在 watch 中引用它时才有效。IE
watch(myNotifier.state)
有什么区别?