es6箭头函数和this

 const Title=React.createClass({

         getDefaults: ()=> {

             return{

                 title:'hello world'

             }

         },

         render:()=>{


             return <h1>{this.props.title}</h1>

         }

     })

    ReactDOM.render(

            <Title/>,

            document.getElementById('app6')

    )

此种情况下报错:Cannot read property 'props' of undefined

**请问:

(1)此种情况下箭头函数和this是否可以一起使用?

(2)如果可以一起使用请问有何种解决方法?**


SMILET
浏览 458回答 1
1回答

小怪兽爱吃肉

可以改成render()&nbsp;{&nbsp;&nbsp;&nbsp;&nbsp;console.log(this); }
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript