为了账号安全,请及时绑定邮箱和手机立即绑定

es6箭头函数和this

es6箭头函数和this

SMILET 2018-11-21 16:13:28
 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)如果可以一起使用请问有何种解决方法?**
查看完整描述

1 回答

?
小怪兽爱吃肉

TA贡献1852条经验 获得超1个赞

可以改成

render() {    console.log(this);
}


查看完整回答
反对 回复 2018-12-29
  • 1 回答
  • 0 关注
  • 457 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信