0
接続されたReactコンポーネントがRedux状態のPropsにプルされています。接続されたReactコンポーネントの小道具からの配列のマッピング
このように、プロットと呼ばれるオブジェクトの配列を取得している:
function mapStateToProps(state) {
return {
plots: state.plots.plots
};
}
が、私は配列にプロットのいくつかのプロパティをマップします。 renderメソッドの内部で、この電話をかける
が正常に動作します:
render() {
if (this.props.plots) {
console.log(this.props.plots.map(a => a.variety));
}...
}
は、クラス宣言の外に、このメソッドを定義し、renderメソッドの内部でそれを呼び出すundefinedを返します:
const varieties = props => {
if (props.plots) {
props.plots.map(a => a.variety);
}
};
render() {
if (this.props.plots) {
console.log(varieties(this.props);
}
}
誰もが、私は」何を知っています私は行方不明?
ありがとうございます!何らかの理由で、私はそれを直ちに吹き飛ばした。 –