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)如果可以一起使用请问有何种解决方法?**
可以改成
萬惡的ES2015!!!
幫你翻一下。
基礎多看,其實理解並不難