标签: react-native redux
我有一个类似于下面的setState
this.setState({ foo: bar, foo2: bar, }, async () => { this.PictureScan(); });
我想将其转换为Redux,但我不知道该怎么做。下面的代码是我的Redux代码,PictureScan()完成后如何调用setScan()。
PictureScan()
setScan()
this.props.setScan({ foo: bar, foo2: bar, });
谢谢。