您如何假设现在设置动态引用?
我收到错误cannot set property of 'test' undefined,如果我使用

<View ref={(ref) => this.someRef['test'] = ref;}/>

最佳答案

您必须先将this.someRef设置为数组或对象,然后才能为其分配属性。

this.someRef = [];
or
this.someRef = {};

关于react-native - 使用ref回调方法的动态refs,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42723343/

10-15 16:58