reactjs – 获取Animated.Value,React-native的当前值

前端之家收集整理的这篇文章主要介绍了reactjs – 获取Animated.Value,React-native的当前值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试使用插值动画查看。我想得到我的Animated.Value的当前值,但不知道如何。我不明白如何用 React-native docs做到这一点。
this.state = {
      translateAnim: new Animated.Value(0)
}
DeviceEventEmitter.addListener('Accelerometer',function (data) {
  console.log(this.state.translateAnim);
  // returns an object,but I need a value in current moment
}
我发现,如何获得一个值:
this.state.translateAnim.addListener(({value}) => this._value = value);

编辑

要记录一个值,我会执行以下操作:

console.log(this.state.translateAnim._value)
原文链接:https://www.f2er.com/react/301337.html

猜你在找的React相关文章