Flex、状态和继承
是否可以有一个子类将状态添加到基类中定义的状态集中?目前看来我的子类覆盖了基类中的所有状态。
Is it possible to have a child class which adds states to the set of states which are defined in the base class? Currently it looks like my child class overrides all of the states in the base class.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的子组件中,以声明方式创建一个单独的状态数组,并在
preinitialize
事件中将它们连接起来。请参阅此示例。In your child component, create a separate array of states declaratively and in the
preinitialize
event concatenate them. See this example.