React Native之Props(属性)和State(状态)和简单样式简单使用

简介: React Native之Props(属性)和State(状态)和简单样式简单使用

1    Props(属性)和State(状态)和简单样式简单使用App.js代码如下

/**
 * Sample React Native App
 * https://github.com/facebook/react-native
 *
 * @format
 * @flow
 */
import React, {Component} from 'react';
import {Platform, StyleSheet, Text, View, NativeModules, DeviceEventEmitter, Image} 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',
});
var myAndroidToast = NativeModules.MyToast;
type Props = {};
class Greet extends Component {
    render() {
  return (<Text>Hello {this.props.name}</Text>);
    }
}
class Blink extends Component {
    constructor(props){
        super(props);
      this.state = {isShowing: true};
        setInterval(() => {
            this.setState(previousState => {
              return {isShowing: !previousState.isShowing};
            });
        },1000);
    }
    render() {
        let display = this.state.isShowing? this.props.text : 'chenyu';
        return(
            <Text>{display}</Text>
        );
    }
}
export default class App extends Component<Props> {
   componentWillMount(){  
      //监听事件名为EventName的事件
      DeviceEventEmitter.addListener('EventName', function() {  
          alert("Android send js msg ");  
      });                                
    }
    constructor(props){
        super(props);
        this.state={
            myName:'chenzixuan',
      num:0,
            isShowingText:true
        }
           // 每1000毫秒对showText状态做一次取反操作
      setInterval(() => {
        this.setState(previousState => {
    return {num: ++this.state.num};
        });
      }, 1000);
    }
  render() {
    let pic = {uri: 'https://upload.wikimedia.org/wikipedia/commons/d/de/Bananavarieties.jpg'};        
    return (
      <View style={styles.container}>
        <Text onPress={()=> this._androidShowMsg()} style={styles.welcome}>Welcome to React Native!</Text>
        <Text style={styles.red}>To get started, edit App.js</Text>
        <Text style={styles.bigblue}>{instructions}</Text>
        <Text style={styles.instructions}>{this.state.myName}</Text>
        <Text style={styles.instructions}>{this.state.num}</Text>
  <Greet name = 'chenyu'></Greet>
        <Blink text = 'chenzixuan'></Blink>
      </View>
    );
  }
    _androidShowMsg = () => {
       var value = myAndroidToast.showMyName();
       this.setState({myName:value});
    };
}
const styles = StyleSheet.create({
  container: {
    flex: 1,
    justifyContent: 'center',
    alignItems: 'center',
    backgroundColor: '#F5FCFF',
  },
  welcome: {
    fontSize: 20,
    textAlign: 'center',
    margin: 10,
  },
  instructions: {
    textAlign: 'center',
    color: '#333333',
    marginBottom: 5,
  },
  bigblue: {
    color: 'blue',
    fontWeight: 'bold',
    fontSize: 39
  },
  red: {
    color: 'red' 
  },
});

2   运行结果如下

20170724223902569.png


相关文章
|
4月前
|
前端开发 JavaScript
学习react基础(3)_setState、state、jsx、使用ref的几种形式
本文探讨了React中this.setState和this.state的区别,以及React的核心概念,包括核心库的使用、JSX语法、类与函数组件的区别、事件处理和ref的使用。
97 3
学习react基础(3)_setState、state、jsx、使用ref的几种形式
|
4月前
|
前端开发
学习react基础(2)_props、state和style的使用
本文介绍了React中组件间数据传递的方式,包括props和state的使用,以及如何在React组件中使用style样式。
48 0
|
3月前
|
前端开发 JavaScript 调度
React 组件状态(State)
10月更文挑战第8天
42 1
|
4月前
|
前端开发
React属性之context属性
React中的Context属性用于跨组件传递数据,通过Provider和Consumer组件实现数据的提供和消费。
45 3
|
3月前
|
前端开发 JavaScript API
React将组件作为属性传递的最佳实践
本文探讨了在React中将组件作为属性传递的三种常见方式:作为元素传递、作为组件传递、作为函数传递。通过构建带图标的按钮组件,对比分析了每种方式的优缺点,最终推荐将组件作为函数传递,因为它提供了更好的可控性、灵活性和可扩展性。
54 0
|
4月前
|
前端开发 JavaScript
React 中的 props 属性传递技巧
【9月更文挑战第6天】本文详细介绍了React中`props`的基本用法,包括传递基本数据类型、对象和数组。文章通过多个代码示例展示了如何正确使用`props`,并探讨了常见的问题及解决方法,如`props`不可变性、默认值设置及类型检查等。正确掌握这些技巧有助于提升编程效率,编写出更健壮的代码。
121 13
|
4月前
|
前端开发
React使用hooks遇到的坑_state中的某几个属性数据变成了空字符
本文讨论了在React使用hooks时遇到的一个问题:state中的某些属性数据变成了空字符。作者通过在修改函数中重新解构赋值来获取最新的state值,解决了因数据更新不及时导致的问题。
97 0
|
5月前
|
JavaScript 前端开发 容器
React组件属性refs(七)
【8月更文挑战第14天】React组件属性refs(七)
61 0
|
5月前
|
存储 前端开发
React 中的 state 和 props 有什么区别?
【8月更文挑战第31天】
67 0
|
JavaScript 前端开发
React Native声明属性和属性确认
属性声明 因为用React Native创建的自定义组件可以复用, 我们开发过程中可能一个项目组有多个人同时开发,其他同事可能会用到我们自定义的组件, 但是他们使用的时候很容易忘记使用某些属性,这时候我们应该在自定义组件中声明一些属性。 //自定义组件 export default class ConfirmDialog extends Component {
1049 0