0
単純な問題ですが、解決策を見つけられません。私は、期待どおりに動作するテキストボックスに単純な文字カウンタを持っていますが、私はconstructor
とcomponentWillReceiveProps
に問題があります。エラー.length undefined.
が表示されます。長さが定義されていない場合、これをどのように機能させるのですか?コンストラクタの要素が未定義でエラーを返します
constructor(props) {
super(props);
const profileCandidateCollection = props.profileCandidate;
const summary = profileCandidateCollection && profileCandidateCollection.summary;
const count = 3000 - (profileCandidateCollection && profileCandidateCollection.summary.length);
this.state = {
count: count,
};
}
componentWillReceiveProps(nextProps) {
const profileCandidateCollection = nextProps.profileCandidate;
const summary = profileCandidateCollection && profileCandidateCollection.summary;
const count = 3000 - (profileCandidateCollection && profileCandidateCollection.summary.length);
this.setState({
count: count,
});
}
エラーを再現するスニペットを追加できますか? – tugce
'TypeError:プロパティ '長さ'が未定義です ' – bp123