刚开始摆弄 Mobx-state-tree。
我有这个模型,它具有可以用同一模型的实例填充的属性 parent
。children
所以基本上是这样的:
const Page = types.model({
guid: types.string,
title: types.string,
description: types.string,
parent: types.union(Page, types.undefined),
children: types.array(Page),
})
但是,显然Page
还没有创建这个模型。
我怎样才能做到这一点?