schovi / react-iscroll

React component for wrapping iScroll http://iscrolljs.com/
MIT License
236 stars 60 forks source link

onRefresh can't work #65

Open Chryseis opened 6 years ago

Chryseis commented 6 years ago

when children component changed, react-iscroll can't recalculate the height.

image

image

source code:https://github.com/Chryseis/elemDemo4React

Chryseis commented 6 years ago

image

children Component setState, parent Component 's componentDidUpdate will not enter. it can't tigger refresh

Chryseis commented 6 years ago

I found a hack solution, in my parent component add a funciton that will setState, then push it to children component,when children component setState,invoking parent's funciton, enter parent's componentDidUpdate, tigger refresh. image image image