gpt4 book ai didi

reactjs - withRef 错误已被删除。要访问包装的实例,请在使用 Redux Form 时使用连接组件上的 ref

转载 作者:行者123 更新时间:2023-12-03 13:05:21 27 4
gpt4 key购买 nike

我第一次尝试让 Redux Form 工作,但收到以下错误:

Invariant Violation withRef is removed. To access the wrapped instance, use a ref on the connected component.

我做错了什么?当我写入(从示例中复制/粘贴)商店时,就会抛出错误。

这是代码。

import React from "react";
import ReactDOM from "react-dom";
import { createStore, combineReducers } from 'redux'
import { reducer as formReducer } from 'redux-form'

const rootReducer = combineReducers({
form: formReducer
})

const store = createStore(rootReducer);


function App() {
return (
<div className="App">
<h1>Hello CodeSandbox</h1>
<h2>Start editing to see some magic happen!</h2>
</div>
);
}

const rootElement = document.getElementById("root");
ReactDOM.render(<App />, rootElement);

我还制作了一个显示问题的代码沙箱:https://codesandbox.io/s/07xzolv60

最佳答案

只需更新到最新版本的 redux-form (8.1.0)。无需降级。

关于reactjs - withRef 错误已被删除。要访问包装的实例,请在使用 Redux Form 时使用连接组件上的 ref,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53683186/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com