我有一个反应原生的ScrollView,它有很多视图.我使用以下代码存储ref以进行查看
cards.push(
卡是一个单独的组件,如下所示:
class Card extends Component {
constructor(props) {
super(props);
this.testMethod = this.testMethod.bind(this);
}
testMethod() {
console.log('this.is.test.method');
}
render() {
return (
但是它说testMethod是未定义的,不能调用ref.testMethod().
最佳答案
原文链接:https://www.f2er.com/js/428924.html