如何在Mobx-State-Tree中具有可为空的模型值

时间:2018-12-12 11:22:24

标签: mobx mobx-state-tree

我正在尝试从已经创建的模型创建模型。我尝试使用此方法,但它无济于事,并抛出我

TypeError: Cannot read property 'mobile' of undefined

这是我的代码

const User = types.model({
    mobile: "",
    name: "",
    _id: "",
})

const task = types.model({
    help_to: types.maybeNull(User),
})

0 个答案:

没有答案