美文网首页
第6.2章:设置属性

第6.2章:设置属性

作者: 赵羽珩 | 来源:发表于2019-03-31 22:30 被阅读0次
image.png
export default class App extends Component {
  constructor(props) {
    super(props);
    this.state = {
      name: '456789',
    }
  }
  render() {
    return (
      <View style={styles.container}>
        <Text style={styles.title} onPress={() => this.setState({name: 'abcdefg'})}>
            {this.state.name}
        </Text>
      </View>
    );
  }
}
image.png

相关文章

网友评论

      本文标题:第6.2章:设置属性

      本文链接:https://www.haomeiwen.com/subject/afjpbqtx.html