React Native錯誤:in next release empty section headers ...

升級React Native到最新版本出現了一個Warninghtml

Warning:In next release empty section headers will be rendered.
In this release you can use 'enableEmptySections' flag to render empty section headers

這個錯誤出如今ListView中,在之後的版本中才會實現空的section headers做爲默認值,當前版本並無支持。
若是咱們不須要使用headers的話,能夠禁止EmptySections
解決方法:react

 <ListView
      style={styles.listView}
      dataSource={this.state.dataSource}
      enableEmptySections={true}
      />

參考文檔:
http://facebook.github.io/react-native/docs/listview.html#enableemptysectionsgit

相關文章
相關標籤/搜索