如果他们没有明确的文件,我会认为他们是私人的,而不是直接使用它们。尽管没有官方声明
@@
@@redux/INIT_{random string}
操作(有关命名的讨论可在以下内容中找到
github thread
):
在新的文件(#140)中,我们应该澄清,任何行动的前缀
与@一起使用时不应处理。例如,你不应该尝试
处理@@INIT。
在
redux code itself
私密性也明确规定:
/**
* These are private action types reserved by Redux.
* For any unknown actions, you must return the current state.
* If the current state is undefined, you must return the initial state.
* Do not reference these action types directly in your code.
*/
对于您的具体问题:您可以提供
onSubmitSuccess function
到HOC并分派您自己的操作来更新您自己的reducer,或者您可以直接依赖redux表单状态并通过
hasSubmitSucceeded selector
. 我个人认为第二个选项更好,因为它不会在存储中引入冗余状态—redux表单已经存储了表单是否成功提交的信息,在另一个子缩减器中自行执行此操作可能会导致两个布尔值无意中发生分歧。