标签: 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), })