问题标签 [react-redux-form]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
910 浏览

reactjs - 从 react-redux-form 提交处理程序调用 thunk

我有这段代码为我的 API 返回一个 thunk

我现在正在实施react-redux-form,但不清楚如何将上述内容与提交功能联系起来。从他们的文档中,它希望我在提交操作中传递一个承诺:

基本上是这样的:

如何将我的 thunked API 代码与提交处理程序连接起来?我已经redux-promise将其视为一种可能性,但我不清楚它是否可以解决我的问题,并且如果我可以使用它,我还想保留现有的 thunk 代码库。

0 投票
1 回答
3310 浏览

reactjs - redux-form,根据其他字段值设置字段可见性

我有一个复杂的表单,其中某些字段的可见性取决于其他字段的值。如何根据 redux-form 中的其他字段的值设置字段的可见性?

0 投票
2 回答
1227 浏览

javascript - 动态加载的最佳实践是什么