我要在按钮中的 点击
事件中调用 Async 函数。 但是它不起作用。 是否可以在点击按钮中调用 Async 函数?
这是密码
< 加固> Filter 按钮 加固>
const FilterButton = (props) => {
return (
<div className="p-2 ">
<button className="btn btn-secondary" onClick={props.fetchInvoices}>Filter</button>
</div>
);
};
抓取发票同步函数
fetchInvoices = async () => {
const invoices = await getInvoices(this.currentState.params);
this.props.store.dispatch(UpdateInvoices(invoices));
};
将函数传送到组件的代码
<SearchField store = {this.props.store} fetchInvoices={this.fetchInvoices}/>