redux-form-在初始化后添加字段,但保留脏值

时间:2019-01-12 17:40:02

标签: reactjs redux-form

我使用FieldArray。

我正在使用redux存储中的initialValues属性初始化表单。

问题是,在用户更改了某些表单值之后,他可以选择从后端加载更多字段,我想将新字段添加到表单中,同时保持当前表单状态,尤其是表单“脏” “属性。

我尝试使用:

 add_action( 'init', 'remove_points');
 function remove_points()
 {
     global $wc_points_rewards;
     remove_action( 'woocommerce_before_add_to_cart_button',  [ $wc_points_rewards->product, 'render_product_message' ], 15 );
    }

但是他们没有用。

0 个答案:

没有答案