我正在创建一个React Native应用程序,我想添加observable / observer模式,但是当observable更改时,观察者的render函数不会重新执行。
以下是可观察的商店:
https://github.com/ksairi/GalaApp/blob/development/app/stores/NotificationsStore.js
这是商店的索引文件:
https://github.com/ksairi/GalaApp/blob/development/app/stores/index.js
这是观察者所在的屏幕,渲染函数中的这一特定行应该使渲染再次重新执行但不会发生。
https://github.com/ksairi/GalaApp/blob/development/app/screens/Notifications.js#L86
有什么想法吗?