试图理解以下三个方面,
props
是这里的对象。关于第一点的一点-根据我的理解,“ {history}”表示应该评估的javascript对象,但我看不到该对象尚未在编写以下代码的组件中初始化。
<Route exact path="/add" render={({history}, props) => <AddSubscriber history={history} {...props} addSubscriberHandler={this.addSubscriberHandler} />} />
答案 0 :(得分:2)
请使用以下代码块在您的问题的答案下面查找:
<Route exact path="/add" render={({history}, props) => <AddSubscriber history={history} {...props} addSubscriberHandler={this.addSubscriberHandler} />} />*