如何将应用程序上组件的属性绑定到app.component的属性?
例如,我的app.component.html由以下内容组成:
<app-type #typeComponent></app-type>
<app-search #searchComponent [propX]="typeComponent.someProp3"></app-search>
<app-results [propA]="searchComponent.someProp1"></app-results>
如何将<app-search>
的属性绑定到app.component中找到的值?如何绑定到app.component?对于[propX]="typeComponent.someProp3"
,我绑定到someProp3
的{{1}},但看不到如何绑定到typeComponent
。
答案 0 :(得分:0)
default context的property binding是父组件实例。因此,给定具有属性if (( $# > 0 )) ; then
printf -v quoted_params '%q ' "$@" # Add all parameters to 'quoted_params'
printf '%s\n' "${quoted_params% }" # Remove trailing space when printing
fi >file.txt
的父组件:
appValue
您可以使用以下语法将子组件的属性export class AppComponent {
public appValue = "Hello world!";
}
绑定到propX
:
appValue