gpt4 book ai didi

angular - 如何让组件在angular2中检测到它的隐藏状态?

转载 作者:行者123 更新时间:2023-12-03 03:02:16 25 4
gpt4 key购买 nike

我有两个组件,子组件的显示状态由父组件控制。如何让 child 知道它的 parent 被改变了隐藏属性?

// Parnet
@Component(selector: '[component-parent]',
templateUrl: 'component-parent.html')
class ComponentParent {
bool enableChild;
}

<div>
<div component-child [hidden]="enableChild"></div>
</div>

// Child
@Component(selector: '[component-child]',
templateUrl: 'component-child.html')
class ComponentChild {
// How child aware not it is not hidden anymore?
}

最佳答案

该组件需要一个 @Input()具有匹配名称以支持 [xxx]="..."捆绑:

@Component(selector: '[component-child]',
templateUrl: 'component-child.html')
class ComponentChild {
@Input()
set hidden(bool val) {
print(val);
}
}

关于angular - 如何让组件在angular2中检测到它的隐藏状态?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39343356/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com