18
React - uncaught TypeError: अपरिभाषित की संपत्ति 'setState' नहीं पढ़ सकता है
मुझे निम्नलिखित त्रुटि प्राप्त हो रही है अनक्रीप्ड टाइपरर: अपरिभाषित की संपत्ति 'सेटस्टेट' को नहीं पढ़ सकता है कंस्ट्रक्टर में डेल्टा बांधने के बाद भी। class Counter extends React.Component { constructor(props) { super(props); this.state = { count : 1 }; this.delta.bind(this); } delta() { this.setState({ count : this.state.count++ }); } …
316
javascript
reactjs