我有一个非常简单的 Fluxible 商店:
export default class NoteStore extends BaseStore {
static storeName = "NoteStore";
static handlers = {
[Actions.NEW_NOTES_FETCHED]: 'handleNewNotes'
};
constructor(dispatcher) {
super(dispatcher);
this.notes = [];
}
handleNewNotes(notes) {
this.notes = [];
var i;
for (i = 0; i < notes.length; i++){
this.notes.push(notes[i].content);
}
this.emitChange();
}
/* ... */
dehydrate() {
return { notes: this.notes };
}
rehydrate(state) {
this.notes = state.notes;
}
// Shouldn't be necessary to override?
shouldDehydrate() {
return true;
}
}
NEW_NOTES_FETCHED 由从我的后端 API 获取数据的操作调度,并且存储侦听该事件并从有效负载中提取数据。据我所知,这一切都在起作用,因为在客户端运行时一切都运行良好。
我遇到的问题是 NoteStore 在服务器调用app.dehydrate()
. 我查看嵌入到页面中的 JSON,但在任何地方都看不到我的商店,尽管我确实看到了 RouteStore 的信息。
我使用 FluxibleContext 注册了我的商店,但我是否需要另外做一些事情才能将其添加到脱水链中?
应用程序引导代码(如果相关):
const app = new Fluxible({ component: Root });
const AppRouteStore = RouteStore.withStaticRoutes(routes);
app.registerStore(AppRouteStore); // AppRouteStore appears in dehydrated JSON
app.registerStore(HtmlHeadStore); // Neither of these do, though HtmlHeadStore doesn't need to
app.registerStore(NoteStore);
export default app;