Aura 获取布尔值,从 parent 到 child

Aura get boolean from parent to child

我是销售人员的新手。 parent 组件中的布尔值将通过单击按钮进行更新。完成了。现在我想根据 parent 布尔值在 child 组件中切换 class。所以我的问题是如何始终从 child?

中读取 parent 布尔值

parent 组件

<aura:attribute name="isActive" type="Boolean" default="false"/>

child 分量

<div class="{!v.siActive ? 'bg-red' : ''}">
    ........
</div>

你见过https://developer.salesforce.com/docs/component-library/bundle/aura:valueChange/documentation吗?

将父属性传递给子属性(在父属性中有类似 <c:myChild isActive="{!v.isActive}"> 然后在 child 中定义一个处理函数,它将 运行 值更改。

实际上很少patterns for parent-child communication,选择看起来easiest/what最接近您已有的