正如标题所暗示的,我有一个我希望位于分层状态节点中的受保护的过渡,但是xState似乎无法读取保护的属性并返回“ TypeError: Cannot read property 'propertyName' of undefined" error
”
是否有办法在xState中执行此操作,或者在这种情况下应该在没有分层State Node的情况下继续进行呢?>
正如标题所暗示的,我有一个想在分层状态节点中的受保护的过渡,但是xState似乎无法读取保护的属性,并返回“ TypeError:无法读取...
on: {
POWER_OUTAGE: '.red.blinking',
POWER_RESTORED: '.red',
POWER_TEST: {
target: '.red.stop',
cond: {
type: 'test'
}
}
}
},{
guards: {
test: () => true
}
});