我在 RNI 和 Expo Snack Application 中得到了不同的 Animated.Value 结果。
我创建了一个新的 RNI 应用程序。在 App.js 中,我在构造函数中添加了一个新的 Animated.Value,然后我在 render 方法中添加了 console.log。
控制台结果是:
Animated Value: AnimatedValue {_children: Array(0), _value: 0, _startingValue: 0, _offset: 0, _animation: null, …}
当我在 Expo Snack 中做同样的事情时,控制台结果是:
Animated Value: 0
为什么是这样?如何访问我的 RNI 应用程序中的值?甚至在 react-native 文档中也使用了该模式。所以我有点惊讶。我在监督什么吗?
这是代码 auf die App.js:
import React, { Component } from 'react';
import {
Platform,
StyleSheet,
Text,
View,
Animated,
} from 'react-native';
const instructions = Platform.select({
ios: 'Press Cmd+R to reload,\n' +
'Cmd+D or shake for dev menu',
android: 'Double tap R on your keyboard to reload,\n' +
'Shake or press menu button for dev menu',
});
type Props = {};
export default class App extends Component<Props> {
constructor(props) {
super(props);
this.state = { left: new Animated.Value(0) };
}
render() {
console.log('Animated Value: ', this.state.left);
return (
<Animated.View style={styles.container}>
<Text style={styles.welcome}>
Welcome to React Native!
</Text>
<Text style={styles.instructions}>
To get started, edit App.js
</Text>
<Text style={styles.instructions}>
{instructions}
</Text>
</Animated.View>
);
}
}