当项目更改时,React 本机部分列表不会重新渲染



我的 react 本机项目中有一个 sectionList。 如果项目更改,它不会重新呈现。我的代码:

测试.js

class Test extends React.Component {
started = false;
causeData=[];
showLess=false;
items = [];
_start = () => {
    const { ws } = this.props;
    this.showLess = false;
    if (ws.causes.length) {
  this.causeData = {
    title: Language.causes,
    key: "cause",
    data: []
  };
  ws.causes.forEach(cause => {
    let causeDetails = {
      key: "cause_" + cause.id,
      name: "",
      value: cause.name,
      sortIndex: cause.sortIndex,
      progress: cause.progress
    };
    this.causeData.data.push(causeDetails);
    if (this.causeData.data.length > 4) {
      this.causeData.data = this.causeData.data.slice(0, 4);
    }
  });
  this.items.push(this.causeData);
  console.log("causeData", this.causeData);
  }  
  }
  }
 _renderItem = ({ item }) => {
     return (
          <View>
          <Text key={item.key} style={styles.text}>{`${item.name}  ${
            item.value
          }`}</Text>
        </View>
  );
 };
_renderSectionHeader = ({ section }) => {
   const { ws } = this.props;
   const showMore = ws.causes.length > 0 && !this.showLess;
  return (
    <View style={styles.sectionHeader}>
      <Text key={section.key} style={styles.header}>
        {section.title}
      </Text>
      {showMore && (
        <Button
          onPress={this._afterCauseAnswered}
          title={Language.showMore}
          data={this.items}
          accessibilityLabel={Language.causeDoneAccessibility}
        />
      )}
      </View>
    );
    };
   _keyExtractor = (item, index) => item.key;
  _afterCauseAnswered = () => {
    const { stepDone, ws } = this.props;
    this.causeData.data = { ...ws.causes };
    stepDone("showMoreAnswered");
    this.showLess = true;
  };
  render = () => {
  if (!this.started) {
  this.started = true;
  this._start();
  }
  return (
  <View style={styles.container}>
    <SectionList
      sections={this.items}
      extraData={this.items}
      renderItem={this._renderItem}
      renderSectionHeader={this._renderSectionHeader}
      keyExtractor={this._keyExtractor}
    />
  </View>
);
};
}

在我的部分列表中,部分标题包含一个名为 showMore 的按钮。在初始渲染时,它只会显示 5 个项目,而单击 showMore 它应该显示所有列表。这是我的功能。但是在单击"显示更多"按钮时,它不会显示整个列表,仅显示 5 个项目,这意味着该部分列表不会重新呈现。如何解决这个问题?我是新手反应本地人。知道我错过了什么吗?任何帮助将不胜感激!

保持itemsshowLess处于某种状态,按下按钮后,使用新值调用setState。它将重新渲染SectionList。此外,如果要显示具有显示列表的多个项目,则需要showLess移动到 item 元素,以便每个项目都知道如何显示它。

你只需要使用state重新渲染你的屏幕,它就完成了

this.setState({})

您的SectionList应始终从state中读取...因为它应该是您的单一事实来源

方法如下:

class YourComponent extends React.Component {
  state = {
    items: [],
  };
  // This will be called after your action is executed,
  // and your component is about to receive a new set of causes...
  componentWillReceiveProps(nextProps) {
    const {
      ws: { causes: nextCauses },
    } = nextProps;
    if (newCauses) {
      // let items = ...
      // update yout items here
      this.setState({ items });
    }
  }
}

相关内容

  • 没有找到相关文章

最新更新