作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个组件,子组件的显示状态由父组件控制。如何让 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/
我是一名优秀的程序员,十分优秀!