我是新来的React,需要一些帮助。
我有一个像这样的功能javascript
从组件的onclick
中调用函数Start。
因此,我需要获取组件中回调object1.SetItemIn
的值。有什么想法吗?
function StarProcess() {
object1.Start();
}
//This is the callback of the process object1.start()
object1.SetItemIn = function(Item) {
};
export class ScanProcess extends Component {
constructor(props) {
super(props);
}
handleStartScan(e) {
item.StarProcess();
//I need to get the values doing in the object1.SetItemIn method
}
render() {
return ('<div>
<button onClick={this.handleStartScan}>
Start Scan
</button></div>'
)
}
}