作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我在我的 React 项目中使用 recompose https://github.com/acdlite/recompose/
这是一个很棒的图书馆。我使用 compose
实用程序作为容器组件,将状态作为 props 传递给展示组件,如下所示:
const enhance = compose(
lifecycle({
componentDidMount() {
myCall
.getResponse([productId])
.then(products => {
setIsReady(true);
});
},
}),
withState('isAvailable', 'setIsAvailable', false),
withState('isReady', 'setIsReady', false),
mapProps(({
setIsAvailable,
setIsReady,
...state,
}) => ({
onLogoutTouchTap: () => {
...
注意 componentDidMount
中的 setIsReady(true)
调用。这是我想要做的,但是 lifecycle/componentDidMount 无权访问 setIsReady
。我怎样才能通过重组实现从 componentDidMount
更新状态的预期结果?
最佳答案
我发现如果你移动了 lifecycle
withState
之后的方法方法,您可以通过访问 this.props.setterFunction
来访问 setter .就我而言,这是我一直在寻找的解决方案:
const enhance = compose(
withState('isAvailable', 'setIsAvailable', false),
withState('isReady', 'setIsReady', false),
lifecycle({
componentDidMount() {
myCall
.getResponse([productId])
.then(products => {
this.props.setIsReady(true);
});
},
}),
mapProps(({
setIsAvailable,
setIsReady,
...state,
}) => ({
onLogoutTouchTap: () => {
...
关于javascript - 我如何在 React 的 recompose 生命周期方法中设置状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41651283/
我是一名优秀的程序员,十分优秀!