最佳答案
我想在一些嵌入式 html 中调用一个函数。我尝试了下面的方法,但是没有调用这个函数。这是否是在呈现方法中调用函数的不正确方法?
import React, { Component, PropTypes } from 'react';
export default class PatientTable extends Component {
constructor(props) {
super(props);
this.state = {
checking:false
};
this.renderIcon = this.renderIcon.bind(this);
}
renderIcon(){
console.log("came here")
return(
<div>Function called</div>
)
}
render() {
return (
<div className="patient-container">
{this.renderIcon}
</div>
);
}
}