react native invariant violation: Maximum update depth exceeded.This can happen when a component rep

  這個原因是在render中使用了setState,導致了重複刷新,render函數死循環了。 如果生成的控件的componentDidMount等加載時運行的函數中含有setState,那麼也不能在render中生成這個控件,而要在 componentWillMount中生成這個控件,否則也會造成死循環。
相關文章
相關標籤/搜索