我的问题是这个。我有两个组成部分。第一个组件是图像裁剪器。第二个组件是我应该显示裁剪图像的组件。
我面临的问题是我可以将裁剪后的图像传递给我的第二个组件,但我必须按下裁剪图像的按钮并传递给第二个组件,两次。在第二次单击时,只有我的图像传递给第二个组件。但我只能通过一次单击在第一个组件中显示裁剪的图像。我认为这种情况正在发生,因为在反应状态下,状态变化不会立即发生。那么我该如何解决这个问题。
我的方法是在第一个组件中创建一个prop
函数,this.props.croppedImage(this.state.preview.img);
此处this.state.preview.img
是裁剪后的图片。在第二个组件中,我通过调用prop函数来获取裁剪后的图像。
我的代码
第一个组件(裁剪器)
class CropperTest extends React.Component {
constructor(props) {
super(props);
this.state = {
name: "beautiful",
scale: 1,
preview: null,
}
this.handleSave = this.handleSave.bind(this);
}
handleSave = () => {
const img = this.editor.getImageScaledToCanvas().toDataURL();
this.setState({
preview: {
img,
scale: this.state.scale,
}
})
this.props.croppedImage(this.state.preview.img);
}
setEditorRef = (editor) => {
this.editor = editor
}
render() {
return (
<div>
<div className="overlay"></div>
<div className="crop_div">
<AvatarEditor
image={this.props.cropImage}
ref={this.setEditorRef}
width={450}
height={450}
border={50}
color={[255, 255, 255, 0.6]} // RGBA
scale={this.state.scale}
rotate={0}
/>
</div>
<div className="zoom_slider text_align_center">
<input className="crop_btn" type='button' onClick={this.handleSave} value='Save'/>
</div>
</div>
)
}
}
export default CropperTest;
第二个组件
这里我基本上做了以下几点。
<CropperTest croppedImage = {this.getCroppedImg}/>
getCroppedImg(img){
alert("Perfect Storm");
this.setState({
previewImg:img
})
}
答案 0 :(得分:12)
我认为这种情况正在发生,因为在reactjs状态下,状态没有立即发生变化。那么我该如何解决这个问题呢?
setState(更新程序,[回调])
setState()
将组件状态的更改排入队列。setState
不会立即更新状态。setState()
并不总是立即更新组件。它可以批量推迟更新或推迟更新。这会在调用this.state
潜在陷阱后立即阅读setState()
。相反,请使用componentDidUpdate
或setState
回调(setState(updater, callback))
调用this.props.croppedImage
回调中的setState
。您将获得组件状态的更新值。在你的情况下是this.state.preview
this.setState({
preview: {
img,
scale: this.state.scale,
}
}, () => {
this.props.croppedImage(this.state.preview.img);
})