Speak now
Please Wait Image Converting Into Text...
Embark on a journey of knowledge! Take the quiz and earn valuable credits.
Challenge yourself and boost your learning! Start the quiz now to earn credits.
Unlock your potential! Begin the quiz, answer questions, and accumulate credits along the way.
Course Queries Syllabus Queries 2 years ago
Posted on 16 Aug 2022, this text provides information on Syllabus Queries related to Course Queries. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.
Turn Your Knowledge into Earnings.
This is puzzling me why I can't get data from the state, I have tried many things but not had no luck.
I'm getting data from a firebase database and I am trying to store the data into a state, then I can access that data from the state.
Any suggestions will be appreciated.
Thank you
state = { isDateTimePickerVisible: false, mode: "time", minuteInterval: 30, selectedDate: {}, isLoading: true, syllabus: [{value: 'Banana'}], users: [{ value: 'Banana', app_id: 'apple', }], timeSlots:[{ name: 'test', time: '123', }], }; testStore() { let returnArr = []; db.ref('bookings/' + this.user).child("22-09-2018").once('value').then(function(snapshot) { let data = snapshot.val(); let timeSlot = Object.values(data); console.log("testStore: " + timeSlot[0].name); //gets data from the firebase database -- testStore: james dt = timeSlot; this.setState({ timeSlots: dt }); }.bind(this)); this.testState(); } testState() { console.log("test state " + this.state.timeSlots[0].name); //Get A red screen with error undefined is not an object(evaluating 'this.state.timeSlots['name']) } onDayPress(day) { console.log("day press " + day.dateString); this.testStore(); var st = day.dateString; var dt = new Date(st); var today = dt; var dd = today.getDate(); var mm = today.getMonth() + 1; REPLY 0 views 0 likes 0 shares Facebook Twitter Linked In WhatsApp
From your complete code, it seems that your constructor is rewriting your state to an empty object (therefore this.state.timeSlots[0].name is indeed problematic)
this.state.timeSlots[0].name
I'd rewrite your constructor as :
constructor(props) { super(props) this.state = { isDateTimePickerVisible: false, mode: 'time', minuteInterval: 30, selectedDate: {}, isLoading: true, syllabus: [{ value: 'Banana', }], users: [{ value: 'Banana', app_id: 'apple', }], slots: [{ name: 'test', time: '123', user_id: '373737', }], } this.onDayPress = this.onDayPress.bind(this) this.testStore = this.testStore.bind(this)
}
and testStore as :
testStore() { const returnArr = [] db.ref(`bookings/${this.user}`).child('22-09-2018').once('value').then((snapshot) => { const data = snapshot.val() const timeSlot = Object.values(data) console.log(`testStore: ${timeSlot[0].name}`) dt = timeSlot this.setState({ timeSlots: dt }, () => { console.log('after setState', this.state.timeSlots) }) }) }
No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.
Course Queries 4 Answers
Course Queries 5 Answers
Course Queries 1 Answers
Course Queries 3 Answers
Ready to take your education and career to the next level? Register today and join our growing community of learners and professionals.