发送广播一个事件 DeviceEventEmitter.emit('updatePlantList', '创建工厂成功');//通知刷新工厂列表 接收处,添加监听(监听要再事件发生之前添加,否则无法回调) componentDidMount() { this.fetch(); this.subscription = DeviceEventEmitter.addListener('userNameDidChange', (userName) => { // alert('通知'); this.fe…