MST:使用自身的子级来定义模型

时间:2019-10-31 15:24:24

标签: mobx-state-tree

刚刚开始摆弄Mobx-state-tree。

我有这个模型,它具有parentchildren属性,可以用同一模型的实例填充。

基本上就是这样:

const Page = types.model({
    guid: types.string,
    title: types.string,
    description: types.string,
    parent: types.union(Page, types.undefined),
    children: types.array(Page),
})

但是,显然Page在创建此模型时尚不可用。

我该怎么做?

1 个答案:

答案 0 :(得分:1)

仔细阅读文档后,我找到了答案。使用types.late()

const Page = types.model({
    guid: types.string,
    title: types.string,
    description: types.string,
    parent: types.union(types.late(() => Page), types.undefined),
    children: children: types.optional(types.array(types.late(() => Page)), []),
})