4
這是我的陣營組成:如何使這個裏面提供渲染功能
constructor(props) {
super(props);
this.state = {
};
this.showChart = this.showChart.bind(this)
}
showChart() {
console.log('test')
}
render() {
{this.showChart} //throws error that, this is undefined
return() (
{this.showChart} //prints test
)
}
現在,如果我想從render()
調用函數,但外界return()
我應該怎麼辦?
是的你是對的 –
幸福,它幫助你 –