反应:如何持久保存特定于组件的数据

时间:2017-03-01 14:14:30

标签: reactjs

我对新生态系统做出反应并想知道在哪里存储数据只能在基于道具的组件constructor中初始化一次。 我不认为状态是一个很好的答案,因为我认为状态应该存储数据会改变。 将basedOn函数移到此组件之外似乎将组件的内部逻辑移动到其他位置。 将这些数据直接绑定到this

是否有意义
class example extends Component {
  constructor(props) {
    //where to store this constVar that initialized once base on the this.props 
    const constVar = basedOn(props)
  }
  render() {
    //how to get the constVar?
  }
}

0 个答案:

没有答案