作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
最佳答案
更改此:
const db = firebase.database().ref('users/trainers/'+uid).on('value', function(snapshot){
// here this refers to the firebase callback scope
this.setState({
.........
.........
})
}))
进入此:
const db = firebase.database().ref('users/trainers/'+uid).on('value', (snapshot) =>{
// here this refers to the firebase callback scope
this.setState({
.........
.........
})
}))
使用箭头函数:
An arrow function does not have its own this. The this value of the enclosing lexical scope is used; arrow functions follow the normal variable lookup rules. So while searching for this which is not present in current scope, an arrow function ends up finding the this from its enclosing scope.
关于javascript - 直接从 firebase rtdb 获取数据时出现 TypeError : Cannot read property 'setState' of null,,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59943344/
我是一名优秀的程序员,十分优秀!