是否可以/安全地使用带有承诺的处理程序?例:
withHandlers({ onChange: props => event => { props.callAPI(props.data) .then(data => props.updateData(data)) }, ...
谢谢!