我正在尝试在forwardRef
的功能组件中使用react-redux
。我的组件看起来像这样:
const InfiniteTable = ({
columns,
url,
data,
stateKey,
loading,
loadMore,
fetchData,
customRecordParams,
...rest
}, ref) => {
const [start, setStart] = useState(0);
const tableRef = React.createRef();
console.log(rest);
let dataSource = data;
if (customRecordParams) dataSource = _.map(dataSource, customRecordParams);
if (dataSource.length > FETCH_LIMIT)
dataSource = _.slice(dataSource, 0, start + FETCH_LIMIT);
useEffect(() => setupScroll(setStart, tableRef), []);
useEffect(() => {
if (loadMore) fetchData(url, stateKey, { start });
}, [start, loadMore]);
useImperativeHandle(ref, () => ({
handleSearch: term => console.log(term),
handleReset: () => console.log("reset")
}));
return (
<Table
columns={columns}
dataSource={dataSource}
pagination={false}
showHeader
loading={loading}
/>
);
};
const mapStateToProps = (state, ownProps) => ({
data: Object.values(state[ownProps.stateKey].data),
loading: state[ownProps.stateKey].isFetching,
loadMore: state[ownProps.stateKey].loadMore
});
export default connect(
mapStateToProps,
{ fetchData },
null,
{ forwardRef: true }
)(InfiniteTable);
但是,尝试将我的组件与ref prop一起使用时出现此错误:
警告:不能为功能组件提供引用。尝试访问此引用将失败。您是要使用React.forwardRef()吗?
我在做什么错了?
答案 0 :(得分:1)
<img id="night" src="../images/BackgroundDay.png" alt="My image" />
<img id="day" src="../images/BackgroundNight.png" alt="My image" />
签名不正确,是legacy context
作为功能组件中的第二个参数而不是InfiniteTable
接收的。为了接收ref对象以将其与ref
一起使用,应使用useImperativeHandle
包装组件。
如the reference所述,
useImperativeHandle自定义使用ref时公开给父组件的实例值。与往常一样,在大多数情况下应避免使用ref的命令性代码。 useImperativeHandle应该与forwardRef一起使用
应该是:
React.forwardRef