react-native--基础(方法调用)

Posted time_iter

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native--基础(方法调用)相关的知识,希望对你有一定的参考价值。

导语:最近写代码,封装组件,手势动画时,经常遇到方法调用。特别是ES5,ES6混用的时候,脑子一直不清晰。发觉还是代码写的少了,缺乏总结。
方法调用的时候,经常会出现错误。然后在调试的时候,会改动一两次,不能一次性写正确。

今天特总结如下:

import React,Component from 'react'
import 
    StyleSheet,
    View,
 from 'react-native'

import CommitButton from './CommitButton'

alertMsgout=()=>
    alert("alertMsgout");
    //调用后执行:
    //onPress=alertMsgout
    //onPress=()=>alertMsgout()



export  default class ActionCustom extends Component
    render()
        return(
            <View>
                <CommitButton
                text='hello'
                onPress=()=>alertMsgout()/>
            </View>
        );
    

    alertMsgin()
        alert("alertMsgin");
        //立即执行:
        // onPress=this.alertMsgin()
        //调用后执行:
        // onPress=()=>this.alertMsgin()
    

    alertMsginInfo=()=>
        alert("alertMsginInfo");
        //立即执行:
        //onPress=this.alertMsginInfo()
        //调用后执行:
        // onPress=this.alertMsginInfo
    

注:每个方法中的调用方法:都在render中的函数onPress中调用,执行时区分立即执行,即打开页面未执行任何操作方法立即执行;调用后执行,即操作之后调用方法,方法才会执行。

CommitButton是一个封装的组件。

以上是关于react-native--基础(方法调用)的主要内容,如果未能解决你的问题,请参考以下文章

react-native 调用原生方法

在 React-Native 中调用 interstitialAd.load() 方法时应用程序崩溃

react-native 如何调用子子组件的方法或者属性

react-native: ios原生调用js方法

在android中安排后台任务并从任务中调用react-native javascript方法

Java基础篇之ThreadPoolExecutor