美文网首页
react中函数调用方法

react中函数调用方法

作者: 说不出口的喵 | 来源:发表于2019-02-20 17:43 被阅读5次

    方式一:内联调用法

    import React, { Component }from 'react';

    class funcextends Component{

    constructor(porps){

    super(props);

      }

    funcOne(){

    console.log('内联调用法')

    }

    render(){

    return (

      )

    }

    }

    方式二:配置中调用法

    import React, { Component }from 'react';

    class funcextends Component{

    constructor(porps){

    super(props);

        this.funcTwo =this.funcTwo.bind(this)

    }

    funcTwo(){

    console.log('配置中调用法')

    }

    render(){

    return (

      )

    }

    }

    方式三:箭头函数调用法(最推荐)import React, { Component }from 'react';

    class funcextends Component{

    constructor(porps){

    super(props);

      }

    funcThree:() => {

    console.log('箭头函数调用法')

    }

    render(){

    return (

      )

    }

    }

    相关文章

      网友评论

          本文标题:react中函数调用方法

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