如果某个值过于抽象,会阻止值传递到组件中的更新吗?例如:<some-component [someValue]="someValue"></some-component>
如果我们将父组件中的someValue
定义为someValue = otherValue
,我们说otherValue = someOtherValue
将更改someOtherValue
更新someValue
儿童成分?我有一些问题,并想知道这是否可能是问题。
答案 0 :(得分:1)
如果它是原始数据类型(字符串,数字,布尔值),那么更改将不会触发,但如果它是一个对象,那么更改对象的属性将触发changedetection。
希望它会有所帮助