在用户捕获图像并将图像保存在图库中后,我试图向用户显示一条消息。我在网上冲浪,但找不到任何解决方案。到目前为止,我从这里尝试了以下代码来捕获图像-
takePicture = async function() {
if (this.camera) {
this.camera.takePicture().then(data => {
FileSystem.moveAsync({
from: data,
to: `${FileSystem.documentDirectory}photos/Photo_${this.state
.photoId}.jpg`,
}).then(() => {
this.setState({
photoId: this.state.photoId + 1,
});
Vibration.vibrate();
});
});
}
};
现在我想知道我应该怎么做才能获得完成事件。非常感谢任何帮助。