这是我的componentDidMount()
方法:
componentDidMount() {
const subscription = accelerometer.subscribe(({ x, y, z, timestamp }) => {
x = Math.trunc(x*100);
this.setState({x})
});
}
在上述方法中,每 100 毫秒的状态都在变化。我在我的render()
方法中使用了该状态,如下所示:
render() {
const animatedImageStyle = StyleSheet.flatten([
styles.captureButton,
{
transform: [{rotateZ:this.state.x + 'deg'}]
}
])
return (
<SideMenu
menu={leftMenu}
isOpen={this.state.isOpenLeftMenu}
menuPosition={'left'}
bounceBackOnOverdraw={false}
onChange={(isOpenLeftMenu) => this.updateLeftMenuState(isOpenLeftMenu)}
>
<View>
<TouchableOpacity
activeOpacity={0.5}
onPress={(this.state.recordingMode == 'camera')?() => this.takePicture():() => this.toggleRecording()}
>
<Image
source={require('../assets/imgs/forRotate.png')}
style={animatedImageStyle}
/>
</TouchableOpacity>
</View>
</SideMenu>
)
}
现在,问题是当我试图打开侧边菜单时,它没有打开,我的意思是它打开但挂得太多了。我的整个应用程序挂得太多了。
我认为这是因为以下方法:
updateLeftMenuState(isMenuOpen) {
this.setState({
isOpenLeftMenu:isMenuOpen
})
}
请注意,我正在更新另一个名为 的状态isOpenLeftMenu
,它可能在我更新状态期间被阻止x
。
谁能告诉我这里出了什么问题?